2006-02-05 Dan Williams <dcbw@redhat.com>

* gnome/applet/nm-gconf-wso.c
		- (real_serialize_dbus): return TRUE, not 0.  Fixes serialization
			of unencrypted access point security info.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1443 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2006-02-05 05:47:26 +00:00
parent de07a4fc5f
commit e90e4f88ca
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-02-05 Dan Williams <dcbw@redhat.com>
* gnome/applet/nm-gconf-wso.c
- (real_serialize_dbus): return TRUE, not 0. Fixes serialization
of unencrypted access point security info.
2006-02-03 Robert Love <rml@novell.com>
* src/NetworkManagerUtils.c: Even for debugging, we should not log the

View file

@ -201,12 +201,12 @@ nm_gconf_wso_set_key (NMGConfWSO *self,
memcpy (self->priv->key, key, key_len);
}
static int
static gboolean
real_serialize_dbus (NMGConfWSO *self,
DBusMessageIter *iter)
{
/* Nothing to do */
return 0;
return TRUE;
}
static int