summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2018-01-11 11:11:10 +0100
committerLubomir Rintel <lkundrak@v3.sk>2018-01-11 11:52:40 +0100
commit603daa5b256b8964e0eed8c78a49d445f7944734 (patch)
treec66b891033c1ebd1173b4c506cf98c40cda31a95
parentb214d148f48ccffc467764568926b2ebcafd2bd4 (diff)
downloadNetworkManager-603daa5b256b8964e0eed8c78a49d445f7944734.tar.gz
secret-agent: construct the dbus proxy for async agent with the correct bus name
The asynchronous secret agent initialization doesn't work at all due to a rather silly typo. Oops. While at it, fix a whitespace error too.
-rw-r--r--libnm/nm-secret-agent-old.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnm/nm-secret-agent-old.c b/libnm/nm-secret-agent-old.c
index 8018bef6c0..8646372ba7 100644
--- a/libnm/nm-secret-agent-old.c
+++ b/libnm/nm-secret-agent-old.c
@@ -1116,7 +1116,7 @@ init_async_got_proxy (GObject *object, GAsyncResult *result, gpointer user_data)
if (priv->auto_register) {
nm_secret_agent_old_register_async (init_data->self, init_data->cancellable,
- init_async_registered, init_data);
+ init_async_registered, init_data);
} else
init_async_complete (init_data, NULL);
}
@@ -1137,7 +1137,7 @@ init_async_got_bus (GObject *initable, GAsyncResult *result, gpointer user_data)
nmdbus_agent_manager_proxy_new (priv->bus,
G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES
| G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START,
- NM_DBUS_INTERFACE_AGENT_MANAGER,
+ NM_DBUS_SERVICE,
NM_DBUS_PATH_AGENT_MANAGER,
init_data->cancellable,
init_async_got_proxy, init_data);