aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-05-22 04:15:01 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-05-22 04:15:01 +0000
commit16916dc6ad0df0d03733747bd09e22485f382688 (patch)
tree26a36ee9767edbbe7c2da320e09766fc36d51ae7 /version_info.c
parentfae90b56b30278dab6906efccf96bca616b422c5 (diff)
Don't put a newline at the end of the compiled-with version information
- we don't put it at the end of the run-time version information. Add newlines into formats used with that information where appropriate (the "About" dialog box already had a newline in the format). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10950 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/version_info.c b/version_info.c
index 2bba50551b..374814eda7 100644
--- a/version_info.c
+++ b/version_info.c
@@ -1,7 +1,7 @@
/* version_info.c
* Routines to report version information for stuff used by Ethereal
*
- * $Id: version_info.c,v 1.3 2004/02/24 01:14:27 guy Exp $
+ * $Id: version_info.c,v 1.4 2004/05/22 04:15:01 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -189,7 +189,7 @@ get_compiled_version_info(GString *str)
break_point = str->len - 1;
g_string_append(str,
"\nNOTE: this build does not support the \"matches\" operator for Ethereal filter"
- "\nsyntax.\n");
+ "\nsyntax.");
do_word_wrap(str, break_point);
#endif /* HAVE_LIBPCRE */
}