aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-10-10 19:00:50 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-10-10 19:00:50 +0000
commitfe2f2920b843530dc8253da9098889d38dae4241 (patch)
treeba9b84d9709ca7373f5ac6321725d094110b81a9 /version_info.c
parent26cce5d9fd36f22a347eb1ebddd3de07e15e31da (diff)
Don't let PortAudio skip the queue on the about dialog ;)
svn path=/trunk/; revision=19478
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/version_info.c b/version_info.c
index 3cec88e08d..9cf6742c4c 100644
--- a/version_info.c
+++ b/version_info.c
@@ -265,18 +265,18 @@ get_compiled_version_info(GString *str)
#else
g_string_append(str, "without Kerberos");
#endif /* HAVE_KERBEROS */
- g_string_append(str, ".");
do_word_wrap(str, break_point);
#ifndef HAVE_LIBPCRE
break_point = str->len - 1;
g_string_append(str,
- "\nNOTE: this build doesn't support the \"matches\" operator for Wireshark filter"
+ ".\nNOTE: this build doesn't support the \"matches\" operator for Wireshark filter"
"\nsyntax.");
- do_word_wrap(str, break_point);
+#else
+ g_string_append(str, ",");
#endif /* HAVE_LIBPCRE */
+ do_word_wrap(str, break_point);
- end_string(str);
}
/*