2005-11-02 Christopher Aillon <caillon@redhat.com>

* src/NetworkManagerPolicy.c:
	(nm_policy_device_change_check) Clarify wireless switch nm_info text


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1088 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Christopher Aillon
2005-11-02 06:29:06 +00:00
committed by Chris Aillon
parent ee379001da
commit d52b45a03a
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2005-11-02 Christopher Aillon <caillon@redhat.com>
* src/NetworkManagerPolicy.c:
(nm_policy_device_change_check) Clarify wireless switch nm_info text
2005-10-28 Robert Love <rml@novell.com>
* vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade: Change label to

View File

@@ -417,8 +417,10 @@ static gboolean nm_policy_device_change_check (NMData *data)
gboolean link = nm_device_has_active_link (old_dev);
if (es || !link)
{
nm_info ("SWITCH: found better connection '%s/%s' than current connection '%s/%s'. essid=%d, link=%d", nm_device_get_iface (new_dev),
new_essid, nm_device_get_iface (old_dev), old_essid, es, link);
nm_info ("SWITCH: found better connection '%s/%s' than current connection '%s/%s'. different_ssids=%d, have_link=%d",
nm_device_get_iface (new_dev), new_essid,
nm_device_get_iface (old_dev), old_essid,
es, link);
do_switch = TRUE;
}
}