aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-04-22 18:04:52 +0000
committerGuy Harris <guy@alum.mit.edu>2007-04-22 18:04:52 +0000
commit6327554e6cf4e78d389bd46bc379572c5f87f872 (patch)
tree481333e9bb677fcb9089ea1a7b387e269fdd6446 /epan
parenta4ae600125a209d211386a316d5f8f193b18cbe7 (diff)
Check the GLib version number, not the GTK+ version number; it's GLib we
care about, and this code doesn't use GTK+, so it doesn't include any GTK+ headers and therefore doesn't get the GTK+ version number defined. svn path=/trunk/; revision=21506
Diffstat (limited to 'epan')
-rw-r--r--epan/crypt/airpdcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/crypt/airpdcap.c b/epan/crypt/airpdcap.c
index d54331ddc9..796db5d6aa 100644
--- a/epan/crypt/airpdcap.c
+++ b/epan/crypt/airpdcap.c
@@ -1350,7 +1350,7 @@ parse_key_string(gchar* input_string)
gchar **tokens;
guint n = 0;
-#if GTK_MAJOR_VERSION < 2
+#if GLIB_MAJOR_VERSION < 2
gint i;
#else
gsize i;