diff options
author | Tomas Kukosa <tomas.kukosa@siemens.com> | 2007-01-11 07:56:37 +0000 |
---|---|---|
committer | Tomas Kukosa <tomas.kukosa@siemens.com> | 2007-01-11 07:56:37 +0000 |
commit | 084bbf692c4e2367899de09ef54e2a8690075030 (patch) | |
tree | 8536f1a032e9782fc9feccec55132cac7b44391e /airpcap_loader.c | |
parent | ab31b4fa4d82e3de75437e86f4c4b1549971b4fa (diff) | |
download | wireshark-084bbf692c4e2367899de09ef54e2a8690075030.tar.gz wireshark-084bbf692c4e2367899de09ef54e2a8690075030.tar.bz2 wireshark-084bbf692c4e2367899de09ef54e2a8690075030.zip |
make airpcap_loader.c compileable and linkable under Windows
svn path=/trunk/; revision=20391
Diffstat (limited to 'airpcap_loader.c')
-rw-r--r-- | airpcap_loader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/airpcap_loader.c b/airpcap_loader.c index 4dfdb614d9..52614f7ca6 100644 --- a/airpcap_loader.c +++ b/airpcap_loader.c @@ -1829,7 +1829,7 @@ merge_key_list(GList* list1, GList* list2) new_dk->bits = dk1->bits; new_dk->type = dk1->type; new_dk->key = g_string_new(dk1->key->str); - new_dk->ssid = g_byte_array_dup(dk1->ssid); + new_dk->ssid = byte_array_dup(dk1->ssid); /* Check the total length of the merged list */ if(g_list_length(merged_list) < MAX_ENCRYPTION_KEYS) |