aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/proto_draw.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-07-09 23:02:38 +0000
committerGuy Harris <guy@alum.mit.edu>2004-07-09 23:02:38 +0000
commitfe1b0f99c4015d93f71fe35a549da186d5311f2e (patch)
treeedefaa04b81689eb419853046f49db16989a560c /gtk/proto_draw.c
parent50ac5816130cde1d821259d2c4215a9b10e3d3a7 (diff)
In the GTK+ code, move the redefinition of "isprint()" to
"gtk/isprint.h", and include that in "follow_dlg.c" (which wasn't including "gtkglobals.h" and thus wasn't getting the redefinition) and "proto_draw.c" (which was including "gtkglobals.h" but now needs to include "isprint.h" as well). svn path=/trunk/; revision=11355
Diffstat (limited to 'gtk/proto_draw.c')
-rw-r--r--gtk/proto_draw.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/proto_draw.c b/gtk/proto_draw.c
index e2055289a5..fde570ef57 100644
--- a/gtk/proto_draw.c
+++ b/gtk/proto_draw.c
@@ -1,7 +1,7 @@
/* proto_draw.c
* Routines for GTK+ packet display
*
- * $Id: proto_draw.c,v 1.107 2004/06/30 06:58:58 guy Exp $
+ * $Id: proto_draw.c,v 1.108 2004/07/09 23:02:38 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -50,6 +50,8 @@
#include <epan/epan_dissect.h>
+#include "isprint.h"
+
#include "main.h"
#include <epan/packet.h>
#include "util.h"