aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-07-11 06:46:00 +0000
committerGuy Harris <guy@alum.mit.edu>2003-07-11 06:46:00 +0000
commit48b1ab757e38eca38cb489e7576bc104c95bae2e (patch)
treeedd4a2da4634ae48ef349e489e01d368acab7872 /util.c
parentdcbe6da00a5342db50ca655f8620afa82c10e10b (diff)
From smhuang [AT] pcs.csie.nctu.edu.tw: fix a "g_string_append()" call.
svn path=/trunk/; revision=8014
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 4f56ea2f61..fe142d8aad 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.66 2003/06/13 22:22:48 guy Exp $
+ * $Id: util.c,v 1.67 2003/07/11 06:45:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -135,7 +135,7 @@ get_compiled_version_info(GString *str)
#ifdef HAVE_PCAP_VERSION
g_string_sprintfa(str, "with libpcap %s,", pcap_version);
#else /* HAVE_PCAP_VERSION */
- g_string_append("with libpcap (version unknown)");
+ g_string_append(str, "with libpcap (version unknown)");
#endif /* HAVE_PCAP_VERSION */
do_word_wrap(str, break_point);
#endif /* WIN32 */