summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Thomas <gthomas@mokafive.com>2014-08-22 17:31:45 -0700
committerDan Williams <dcbw@redhat.com>2014-08-27 09:20:02 -0500
commitcf10c8de8e9d1a579f4ca60bd35450f225882318 (patch)
tree24857d3c58dc2a30525ef7a03b8a9a54465d8acf
parent86ffea8004980b9ab931d3f172e89fe192af6cd0 (diff)
downloadNetworkManager-cf10c8de8e9d1a579f4ca60bd35450f225882318.tar.gz
supplicant/ifnet: fix spelling of "private_key2_passwd" option
This wpa_supplicant option is not named "private_key_passwd2". Looks like this regressed in e5ed391f288d7e2a653aa19d58ae0dedbc9a67f7. Signed-off-by: Geoffrey Thomas <gthomas@mokafive.com>
-rw-r--r--src/settings/plugins/ifnet/connection_parser.c4
-rw-r--r--src/supplicant-manager/nm-supplicant-config.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/settings/plugins/ifnet/connection_parser.c b/src/settings/plugins/ifnet/connection_parser.c
index 86a734bee2..a9383a65fb 100644
--- a/src/settings/plugins/ifnet/connection_parser.c
+++ b/src/settings/plugins/ifnet/connection_parser.c
@@ -207,7 +207,7 @@ eap_tls_reader (const char *eap_method,
/* Private key password */
privkey_password = wpa_get_value (ssid,
- phase2 ? "private_key_passwd2" :
+ phase2 ? "private_key2_passwd" :
"private_key_passwd");
if (!privkey_password) {
@@ -1932,7 +1932,7 @@ write_8021x_certs (NMSetting8021x *s_8021x,
goto out;
if (phase2)
- wpa_set_data (conn_name, "private_key_passwd2", password);
+ wpa_set_data (conn_name, "private_key2_passwd", password);
else
wpa_set_data (conn_name, "private_key_passwd", password);
diff --git a/src/supplicant-manager/nm-supplicant-config.c b/src/supplicant-manager/nm-supplicant-config.c
index 5eb4b47320..3f7fd721c0 100644
--- a/src/supplicant-manager/nm-supplicant-config.c
+++ b/src/supplicant-manager/nm-supplicant-config.c
@@ -1020,7 +1020,7 @@ nm_supplicant_config_add_setting_8021x (NMSupplicantConfig *self,
* isn't decrypted at all.
*/
value = nm_setting_802_1x_get_phase2_private_key_password (setting);
- if (!add_string_val (self, value, "private_key_passwd2", FALSE, TRUE))
+ if (!add_string_val (self, value, "private_key2_passwd", FALSE, TRUE))
return FALSE;
}