summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1998-12-22 05:52:51 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1998-12-22 05:52:51 +0000
commite37cbc4fc1ef21b3aeaad4dedde591ea49c14c4b (patch)
treecae49ee80b1d48b9734154e1932d2b7941880d6e /util.c
parent43558a76093deeda65aa61630724a00f182d3fc8 (diff)
downloadwireshark-e37cbc4fc1ef21b3aeaad4dedde591ea49c14c4b.tar.gz
Stopped the "TCP Follow" screen from producing an error when using
wiretap and gtk+-1.1.x. I also added an #include to util.c to keep it from complaining about a lack of a definition of vsnprintf when compiling with gtk+-1.1.x. svn path=/trunk/; revision=136
Diffstat (limited to 'util.c')
-rw-r--r--util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.c b/util.c
index 25d3d2ebc7..a8b3da23ce 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.7 1998/10/28 21:22:33 gerald Exp $
+ * $Id: util.c,v 1.8 1998/12/22 05:52:51 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -33,6 +33,7 @@
#include <stdarg.h>
#include <strings.h>
+#include <stdio.h>
#ifdef NEED_SNPRINTF_H
# ifdef HAVE_STDARG_H