2006-02-27 Robert Love <rml@novell.com>

Patch by R. Vinay <rvinay@novell.com>:
	* gnome/vpn-properties/nm-vpn-properties.c: Remove the gconf key
	  'last_attempt_success' when removing a VPN connection, too.  (Fixes
	  Novell bug #153628).


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1506 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love 2006-02-27 18:16:48 +00:00 committed by Robert Love
parent a0ef5bab6f
commit c4f8012b97
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2006-02-27 Robert Love <rml@novell.com>
Patch by R. Vinay <rvinay@novell.com>:
* gnome/vpn-properties/nm-vpn-properties.c: Remove the gconf key
'last_attempt_success' when removing a VPN connection, too. (Fixes
Novell bug #153628).
2006-02-27 Robert Love <rml@novell.com>
* gnome/applet/applet.glade: Set "activates_default" on passphrase

View file

@ -736,6 +736,9 @@ delete_cb (GtkButton *button, gpointer user_data)
/* TODO: remove user_name */
g_snprintf (key, sizeof (key), "%s/user_name", conn_gconf_path);
gconf_client_unset (gconf_client, key, NULL);
g_snprintf (key, sizeof (key), "%s/last_attempt_success", conn_gconf_path);
gconf_client_unset (gconf_client, key, NULL);
gconf_client_unset (gconf_client, conn_gconf_path, NULL);
gconf_client_suggest_sync (gconf_client, NULL);