aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-10 19:00:50 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-10 19:00:50 +0000
commitafde583876c32864eeecfd5aa7b0e1fda07d1c71 (patch)
treeba9b84d9709ca7373f5ac6321725d094110b81a9 /version_info.c
parent9de26da5fc458ddf4f10c26cd78cdbf7052bc81a (diff)
Don't let PortAudio skip the queue on the about dialog ;)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19478 f5534014-38df-0310-8fa8-9805f1628bb7
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);
}
/*