summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-07-05 14:40:23 +0200
committerThomas Haller <thaller@redhat.com>2016-07-05 14:42:15 +0200
commit39e7c9e8fd992fd6aaee03dc72c375144609fb3f (patch)
treea29c16782665f52634ae5f32be4465bb6647d064
parente8b7d3e01dc2d2f73a09558f3b019b0a2a425dbb (diff)
downloadNetworkManager-39e7c9e8fd992fd6aaee03dc72c375144609fb3f.tar.gz
device: fix logging message in nm_device_update_permanent_hw_address()
-rw-r--r--src/devices/nm-device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 2b3c3cfadd..fd70325069 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -11548,8 +11548,8 @@ nm_device_update_permanent_hw_address (NMDevice *self)
* a temporary address (fake). */
_LOGD (LOGD_HW | LOGD_ETHER, "hw-addr: %s (use current: %s)",
success_read
- ? "unable to read permanent MAC address"
- : "read HW addr length of permanent MAC address differs",
+ ? "read HW addr length of permanent MAC address differs"
+ : "unable to read permanent MAC address",
priv->hw_addr);
priv->hw_addr_perm_fake = TRUE;
priv->hw_addr_perm = g_strdup (priv->hw_addr);