aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/proto_draw.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-09 23:02:38 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-09 23:02:38 +0000
commit9b7419a1dd9dccb734963d314dfadb2d4136482a (patch)
treeedefaa04b81689eb419853046f49db16989a560c /gtk/proto_draw.c
parent6fb25bb84f2cb65bb673baf920df53ed7f1f8f84 (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). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11355 f5534014-38df-0310-8fa8-9805f1628bb7
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"