From a7f3b960f415fd82300b0ecbeccb843f83ac3aee Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Mon, 22 Oct 2007 13:58:04 +0000 Subject: [PATCH] 2007-10-22 Dan Williams * libnm-util/nm-setting.c - (setting_wireless_security_verify): allow WEP-40 and WEP-104 as pairwise cipher options for Dynamic WEP git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2995 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 6 ++++++ libnm-util/nm-setting.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 22f2166ae8..993982daf0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-22 Dan Williams + + * libnm-util/nm-setting.c + - (setting_wireless_security_verify): allow WEP-40 and WEP-104 as + pairwise cipher options for Dynamic WEP + 2007-10-21 Dan Williams * src/NetworkManagerAP.c diff --git a/libnm-util/nm-setting.c b/libnm-util/nm-setting.c index 349e7b9192..c90aeed691 100644 --- a/libnm-util/nm-setting.c +++ b/libnm-util/nm-setting.c @@ -789,7 +789,7 @@ setting_wireless_security_verify (NMSetting *setting, GHashTable *all_settings) const char *valid_key_mgmt[] = { "none", "ieee8021x", "wpa-none", "wpa-psk", "wpa-eap", NULL }; const char *valid_auth_algs[] = { "open", "shared", "leap", NULL }; const char *valid_protos[] = { "wpa", "rsn", NULL }; - const char *valid_pairwise[] = { "tkip", "ccmp", NULL }; + const char *valid_pairwise[] = { "wep40", "wep104", "tkip", "ccmp", NULL }; const char *valid_groups[] = { "wep40", "wep104", "tkip", "ccmp", NULL }; const char *valid_eap[] = { "leap", "md5", "tls", "peap", "ttls", "sim", "psk", "fast", NULL }; const char *valid_phase1_peapver[] = { "0", "1", NULL };