From ec55e32ee6a92937d51d3de476b02f856bc7a27b Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Wed, 19 Jan 2011 17:17:41 -0600 Subject: [PATCH] agent: pass the right call-id in the secrets callback --- src/nm-secret-agent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nm-secret-agent.c b/src/nm-secret-agent.c index d65f5f369d..f347ffeb5c 100644 --- a/src/nm-secret-agent.c +++ b/src/nm-secret-agent.c @@ -160,7 +160,7 @@ secrets_callback (DBusGProxy *proxy, dbus_g_proxy_end_call (proxy, call, &error, DBUS_TYPE_G_MAP_OF_MAP_OF_VARIANT, &secrets, G_TYPE_INVALID); - r->callback (r->agent, r, secrets, error, r->callback_data); + r->callback (r->agent, r->call, secrets, error, r->callback_data); if (secrets) g_hash_table_unref (secrets); g_clear_error (&error);