From 39e7c9e8fd992fd6aaee03dc72c375144609fb3f Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 5 Jul 2016 14:40:23 +0200 Subject: [PATCH] device: fix logging message in nm_device_update_permanent_hw_address() --- src/devices/nm-device.c | 4 ++-- 1 file 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);