diff --git a/ChangeLog b/ChangeLog index ac1f70c5eb..842cfb58e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-02-27 Robert Love + + Patch by R. Vinay : + * 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 * gnome/applet/applet.glade: Set "activates_default" on passphrase diff --git a/gnome/vpn-properties/nm-vpn-properties.c b/gnome/vpn-properties/nm-vpn-properties.c index 244172b28e..4cbfadadb7 100644 --- a/gnome/vpn-properties/nm-vpn-properties.c +++ b/gnome/vpn-properties/nm-vpn-properties.c @@ -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);