2008-10-02 Dan Williams <dcbw@redhat.com>

* src/NetworkManagerPolicy.c
		- (device_state_changed): when marking a connection invalid, clear its
			secrets too so that fresh secrets get requested the next time



git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4138 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2008-10-02 13:21:14 +00:00
parent bcd7a1075c
commit 64f8dfa0af
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2008-10-02 Dan Williams <dcbw@redhat.com>
* src/NetworkManagerPolicy.c
- (device_state_changed): when marking a connection invalid, clear its
secrets too so that fresh secrets get requested the next time
2008-10-01 Dan Williams <dcbw@redhat.com>
* system-settings/src/dbus-settings.c

View file

@ -687,6 +687,7 @@ device_state_changed (NMDevice *device,
if (connection) {
g_object_set_data (G_OBJECT (connection), INVALID_TAG, GUINT_TO_POINTER (TRUE));
nm_info ("Marking connection '%s' invalid.", get_connection_id (connection));
nm_connection_clear_secrets (connection);
}
schedule_activate_check (policy, device);
break;