aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-03-05 09:59:15 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-03-05 09:59:15 +0000
commit3b5f1bce7b33f5451bd67aa870164fefa6751824 (patch)
treee74d93e6df2affd37c25dcf35c2f154b7c1b54bf /version_info.c
parent2cc71b9b66745696154e17dc6b6c509fd93f5eb8 (diff)
downloadwireshark-3b5f1bce7b33f5451bd67aa870164fefa6751824.tar.gz
wireshark-3b5f1bce7b33f5451bd67aa870164fefa6751824.tar.bz2
wireshark-3b5f1bce7b33f5451bd67aa870164fefa6751824.zip
Don't add newline before LIBCAP, as this is done correct in end_string().
svn path=/trunk/; revision=24563
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/version_info.c b/version_info.c
index 05b0b04b80..f1f70c3222 100644
--- a/version_info.c
+++ b/version_info.c
@@ -159,7 +159,7 @@ get_compiled_version_info(GString *str, void (*additional_info)(GString *))
#endif /* HAVE_LIBZ */
/* LIBCAP */
- g_string_append(str, ",\n");
+ g_string_append(str, ", ");
#ifdef HAVE_LIBCAP
g_string_append(str, "with POSIX capabilities");
#ifdef _LINUX_CAPABILITY_VERSION