aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2011-08-07 18:15:45 +0000
committerJörg Mayer <jmayer@loplof.de>2011-08-07 18:15:45 +0000
commitc15ff441c66bf3592c03936d8a08a69ac8402377 (patch)
treeb8bd2c48af92dcf50aa9122b8cb9fb6cb0580da8 /epan/crypt
parent9e61dfeb338e86e0e8ff6e1a2ef87674d02b4d0d (diff)
Replace deprecated glib functions.
In order to compile the whole project with -DG_DISABLE_DEPRECATED the mate plugin needs to replace its usage of GMemChunk. All other places should be clean. svn path=/trunk/; revision=38392
Diffstat (limited to 'epan/crypt')
-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 c96a2a2a29..740a148c8b 100644
--- a/epan/crypt/airpdcap.c
+++ b/epan/crypt/airpdcap.c
@@ -1824,7 +1824,7 @@ parse_key_string(gchar* input_string, guint8 key_type)
/* XXX - The current key handling code in the GUI requires
* no separators and lower case */
dk->key = g_string_new(bytes_to_str(key_ba->data, key_ba->len));
- g_string_down(dk->key);
+ g_string_ascii_down(dk->key);
dk->bits = key_ba->len * 8;
dk->ssid = NULL;