Don't lower-case our SSID and passphrase, otherwise we'll create an
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 4 Jan 2007 23:21:37 +0000 (23:21 +0000)
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 4 Jan 2007 23:21:37 +0000 (23:21 +0000)
incorrect PSK hash.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20318 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-ieee80211.c

index 53798aebd6e7df0f37b390c1632e88952ea8d65e..32893c79a49aa6517b6eb25ac64504d68e9b030f 100644 (file)
@@ -5283,13 +5283,11 @@ parse_key(gchar* input_string)
 
        /* Lower case... */
        g_strdown(type);
-       g_strdown(key);
 
        /* Maybe there is a third token (an ssid, if everything else is ok) */
        if(n >= 3)
        {
                ssid = g_strdup(tokens[2]);
-               g_strdown(ssid);
        }
        else
        {