2005-06-26 Robert Love <rml@novell.com>
* src/NetworkManagerDevice.c: be specific about which device in nm_info() message. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@757 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2005-06-26 Robert Love <rml@novell.com>
|
||||
|
||||
* src/NetworkManagerDevice.c: be specific about which device in
|
||||
nm_info() message.
|
||||
|
||||
2005-06-23 Adam Weinberger <adamw@gnome.org>
|
||||
|
||||
* src/nm-netlink-monitor.c: correct spelling error.
|
||||
|
@@ -1671,7 +1671,7 @@ gboolean nm_device_bring_up_wait (NMDevice *dev, gboolean cancelable)
|
||||
args[2] = GINT_TO_POINTER (cancelable);
|
||||
nm_wait_for_completion (400, G_USEC_PER_SEC / 200, NULL, nm_completion_device_is_up_test, args);
|
||||
if (err)
|
||||
nm_info ("failed to bring device up");
|
||||
nm_info ("failed to bring up device %s", dev->iface);
|
||||
return err;
|
||||
}
|
||||
|
||||
@@ -1716,7 +1716,7 @@ static gboolean nm_device_bring_down_wait (NMDevice *dev, gboolean cancelable)
|
||||
nm_wait_for_completion(400, G_USEC_PER_SEC / 200, NULL,
|
||||
nm_completion_device_is_down_test, args);
|
||||
if (err)
|
||||
nm_info ("failed to bring device down");
|
||||
nm_info ("failed to bring down device %s", dev->iface);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user