aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tds.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-07-09 23:17:05 +0000
committerGuy Harris <guy@alum.mit.edu>2004-07-09 23:17:05 +0000
commit7661a992b6e6fa0cd50ae0b9f968a131f299b3cb (patch)
tree2a1ee38f14504ad2092c0d754f48db7845689fb9 /packet-tds.c
parentfe1b0f99c4015d93f71fe35a549da186d5311f2e (diff)
downloadwireshark-7661a992b6e6fa0cd50ae0b9f968a131f299b3cb.tar.gz
wireshark-7661a992b6e6fa0cd50ae0b9f968a131f299b3cb.tar.bz2
wireshark-7661a992b6e6fa0cd50ae0b9f968a131f299b3cb.zip
Move the redefinition of "isprint()" to be used by dissectors when
generating strings to put into the printable representation of protocol tree items into an "isprint.h" header, and include it in some additional dissectors. Add bounds checking to one place in the DICOM dissector. svn path=/trunk/; revision=11356
Diffstat (limited to 'packet-tds.c')
-rw-r--r--packet-tds.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-tds.c b/packet-tds.c
index b83f5a49bc..2693deef08 100644
--- a/packet-tds.c
+++ b/packet-tds.c
@@ -3,7 +3,7 @@
* Copyright 2000-2002, Brian Bruns <camber@ais.org>
* Copyright 2002, Steve Langasek <vorlon@netexpress.net>
*
- * $Id: packet-tds.c,v 1.27 2004/02/20 08:40:30 guy Exp $
+ * $Id: packet-tds.c,v 1.28 2004/07/09 23:17:05 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -150,6 +150,8 @@
#include <glib.h>
+#include "isprint.h"
+
#include <epan/packet.h>
#include <epan/conversation.h>
#include <epan/strutil.h>