2008-04-10 Tambet Ingo <tambet@gmail.com>

* system-settings/plugins/ifcfg-suse/parser.c (make_wireless_security_setting):
	Make it compile again by commenting out broken code that at first didn't work and
	now didn't compile either.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3550 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Tambet Ingo 2008-04-10 07:57:43 +00:00
parent 91ef98d3ce
commit 3923ddc618
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-04-10 Tambet Ingo <tambet@gmail.com>
* system-settings/plugins/ifcfg-suse/parser.c (make_wireless_security_setting):
Make it compile again by commenting out broken code that at first didn't work and
now didn't compile either.
2008-04-08 Dan Williams <dcbw@redhat.com>
* libnm-glib/nm-object-cache.c

View file

@ -432,6 +432,7 @@ read_wpa_psk_settings (shvarFile *ifcfg, NMSettingWirelessSecurity *security, GE
g_set_error (err, ifcfg_plugin_error_quark (), 0, "Missing WPA-PSK key.");
}
#if 0
static void
read_wpa_eap_settings (shvarFile *ifcfg, NMSettingWirelessSecurity *security, GError **err)
{
@ -483,6 +484,7 @@ read_wpa_eap_settings (shvarFile *ifcfg, NMSettingWirelessSecurity *security, GE
ws_wpa_fill_default_ciphers (security);
}
#endif
static NMSetting *
make_wireless_security_setting (shvarFile *ifcfg, GError **err)
@ -514,7 +516,7 @@ make_wireless_security_setting (shvarFile *ifcfg, GError **err)
read_wpa_psk_settings (ifcfg, s_wireless_sec, err);
} else if (!g_ascii_strcasecmp (value, "eap")) {
s_wireless_sec->key_mgmt = g_strdup ("wps-eap");
read_wpa_eap_settings (ifcfg, s_wireless_sec, err);
/* read_wpa_eap_settings (ifcfg, s_wireless_sec, err); */
} else
g_set_error (err, ifcfg_plugin_error_quark (), 0, "Invalid authentication algoritm '%s'", value);