From 9aa117a93e315f790a1922d9ac7bd484878b621e Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 23 May 2013 01:15:02 +0200 Subject: LDAP: Pass in a connection to ID functions Instead of using the default connection from the sdap_id_ctx, allow the caller to specify which connection shall be used for this particular request. Again, no functional change is present in this patch, just another parameter is added. --- src/providers/ad/ad_id.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/providers/ad/ad_id.c') diff --git a/src/providers/ad/ad_id.c b/src/providers/ad/ad_id.c index f6e975e11..5d8c78371 100644 --- a/src/providers/ad/ad_id.c +++ b/src/providers/ad/ad_id.c @@ -34,7 +34,7 @@ ad_account_info_handler(struct be_req *be_req) struct ad_id_ctx); sdap_id_ctx = ad_ctx->sdap_id_ctx; - return sdap_handle_account_info(be_req, sdap_id_ctx); + return sdap_handle_account_info(be_req, sdap_id_ctx, sdap_id_ctx->conn); } void -- cgit