mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 06:20:10 +01:00
2006-03-10 Robert Love <rml@novell.com>
* src/nm-ap-security-wpa-eap.c: Pass fake empty strings for serialization if strings are NULL, lest DBUS get angry. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1585 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
3f6036803c
commit
b368cf5118
2 changed files with 15 additions and 9 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2006-03-10 Robert Love <rml@novell.com>
|
||||
|
||||
* src/nm-ap-security-wpa-eap.c: Pass fake empty strings for
|
||||
serialization if strings are NULL, lest DBUS get angry.
|
||||
|
||||
|
||||
2006-03-10 Robert Love <rml@novell.com>
|
||||
|
||||
* src/nm-ap-security-wpa-eap.c: Don't log the password.
|
||||
|
|
|
|||
|
|
@ -128,15 +128,15 @@ real_serialize (NMAPSecurity *instance, DBusMessageIter *iter)
|
|||
NMAPSecurityWPA_EAP * self = NM_AP_SECURITY_WPA_EAP (instance);
|
||||
|
||||
if (!nmu_security_serialize_wpa_eap (iter,
|
||||
self->priv->eap_method,
|
||||
self->priv->identity,
|
||||
self->priv->passwd,
|
||||
self->priv->anon_identity,
|
||||
self->priv->private_key_passwd,
|
||||
self->priv->private_key_file,
|
||||
self->priv->client_cert_file,
|
||||
self->priv->ca_cert_file,
|
||||
self->priv->wpa_version))
|
||||
self->priv->eap_method,
|
||||
self->priv->identity ? : "",
|
||||
self->priv->passwd ? : "",
|
||||
self->priv->anon_identity ? : "",
|
||||
self->priv->private_key_passwd ? : "",
|
||||
self->priv->private_key_file ? : "",
|
||||
self->priv->client_cert_file ? : "",
|
||||
self->priv->ca_cert_file ? : "",
|
||||
self->priv->wpa_version))
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue