mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 07:00:05 +01:00
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:
parent
12733b246b
commit
4515cc9bb7
2 changed files with 7 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue