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:
Robert Love
2005-06-26 17:18:35 +00:00
committed by Robert Love
parent 12733b246b
commit 4515cc9bb7
2 changed files with 7 additions and 2 deletions

View File

@@ -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.

View File

@@ -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;
}