2007-10-24 Dan Williams <dcbw@redhat.com>
* libnm-util/nm-setting.c - (setting_wireless_security_need_secrets): Fix lookup table logic for EAP method need secrets git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3017 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2007-10-24 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* libnm-util/nm-setting.c
|
||||
- (setting_wireless_security_need_secrets): Fix lookup table logic for
|
||||
EAP method need secrets
|
||||
|
||||
2007-10-24 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/backends/NetworkManagerRedHat.c
|
||||
|
@@ -1537,7 +1537,7 @@ setting_wireless_security_need_secrets (NMSetting *setting)
|
||||
for (i = 0; eap_need_secrets_table[i].method; i++) {
|
||||
if (eap_need_secrets_table[i].func == NULL)
|
||||
continue;
|
||||
if (strcmp (eap_need_secrets_table[i].method, method)) {
|
||||
if (!strcmp (eap_need_secrets_table[i].method, method)) {
|
||||
(*eap_need_secrets_table[i].func) (self, secrets, FALSE);
|
||||
|
||||
/* Only break out of the outer loop if this EAP method
|
||||
|
Reference in New Issue
Block a user