summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2013-10-24 12:19:20 +0200
committerJiří Klimeš <jklimes@redhat.com>2013-10-24 12:19:20 +0200
commit5bbde1b87e619a6a2d82311b7796e548a515123f (patch)
treea3a75b65c48fa42e1a9cbcf772b49da05d417cc3
parentf4dbf27410ce51e95c70b9e2572e30771a67eeed (diff)
downloadNetworkManager-5bbde1b87e619a6a2d82311b7796e548a515123f.tar.gz
core: fix an error message - connection ID vs. interface name
-rw-r--r--src/nm-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nm-manager.c b/src/nm-manager.c
index 4f0d0073d9..d6e6f57cef 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -3111,7 +3111,7 @@ nm_manager_activate_connection (NMManager *manager,
} else {
g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_AUTOCONNECT_NOT_ALLOWED,
"'%s' does not allow automatic connections at this time => software device '%s' not created for '%s'",
- iface, nm_connection_get_id (connection), iface);
+ iface, iface, nm_connection_get_id (connection));
g_free (iface);
return NULL;
}