core: fix an error message - connection ID vs. interface name

This commit is contained in:
Jiří Klimeš 2013-10-24 12:19:20 +02:00
parent f4dbf27410
commit 5bbde1b87e

View file

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