aboutsummaryrefslogtreecommitdiffstats
path: root/packet-radius.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-05 09:42:26 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-05 09:42:26 +0000
commit1b3621031843e2d9bc544174697dff374ed882d3 (patch)
tree8129a2d527b9d7d2a834526af0c43af55ae0340d /packet-radius.c
parentdbdea1617e286031e1b0b6f3b65312fe9dab2fef (diff)
We can't test the GTK+ version in dissectors or libethereal code, as
they don't include any GTK+ headers (and shouldn't do so, as they can't use GTK+); we use the GLib version as a proxy. svn path=/trunk/; revision=9982
Diffstat (limited to 'packet-radius.c')
-rw-r--r--packet-radius.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/packet-radius.c b/packet-radius.c
index e01f56040a..35afe10912 100644
--- a/packet-radius.c
+++ b/packet-radius.c
@@ -6,7 +6,7 @@
*
* RFC 2865, RFC 2866, RFC 2867, RFC 2868, RFC 2869
*
- * $Id: packet-radius.c,v 1.91 2004/02/01 06:56:52 jmayer Exp $
+ * $Id: packet-radius.c,v 1.92 2004/02/05 09:42:25 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2265,7 +2265,7 @@ rdconvertbufftostr(gchar *dest, tvbuff_t *tvb, int offset, int length)
dest[totlen+1]=0;
}
-#if GTK_MAJOR_VERSION >= 2 || GTK_MINOR_VERSION >= 3
+#if GLIB_MAJOR_VERSION >= 2
/*
* XXX - "isprint()" can return "true" for non-ASCII characters, but
* those don't work with GTK+ 1.3 or later, as they take UTF-8 strings
@@ -2273,6 +2273,10 @@ rdconvertbufftostr(gchar *dest, tvbuff_t *tvb, int offset, int length)
* characters in all output (both GUI displays and text printouts)
* in those versions of GTK+, we work around the problem by escaping
* all characters that aren't printable ASCII.
+ *
+ * We don't know what version of GTK+ we're using, as dissectors don't
+ * use any GTK+ stuff; we use GLib as a proxy for that, with GLib 2.x
+ * implying GTK+ 1.3 or later (we don't support GLib 1.3[.x]).
*/
#undef isprint
#define isprint(c) (c >= 0x20 && c < 0x7f)