From b81f453b8ade026f9c19bfd557a986cbcf0c9c8c Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 22 Feb 2010 09:19:43 -0500 Subject: Remove unnecessary "domain" parameter from DP registration This was a holdover from when the DP and the providers were unique processes. The NSS and PAM registrations do not need to send the domain, as it is not ambiguous which one they are talking to. --- src/responder/common/responder_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/responder/common/responder_common.c') diff --git a/src/responder/common/responder_common.c b/src/responder/common/responder_common.c index 37bbcb30f..ca830e473 100644 --- a/src/responder/common/responder_common.c +++ b/src/responder/common/responder_common.c @@ -351,7 +351,7 @@ static int sss_dp_init(struct resp_ctx *rctx, /* Identify ourselves to the DP */ ret = dp_common_send_id(be_conn->conn, DATA_PROVIDER_VERSION, - cli_name, domain->name); + cli_name); if (ret != EOK) { DEBUG(0, ("Failed to identify to the DP!\n")); return ret; -- cgit