diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-05-23 01:15:02 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-06-07 00:14:13 +0200 |
commit | 9aa117a93e315f790a1922d9ac7bd484878b621e (patch) | |
tree | 2ca931d7bc7a1a74d0f94033399578240dd8d387 /src/providers/ipa | |
parent | e6e129a40e69af52a12deed91f68fff3569c51ce (diff) | |
download | sssd-9aa117a93e315f790a1922d9ac7bd484878b621e.tar.gz sssd-9aa117a93e315f790a1922d9ac7bd484878b621e.tar.bz2 sssd-9aa117a93e315f790a1922d9ac7bd484878b621e.zip |
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.
Diffstat (limited to 'src/providers/ipa')
-rw-r--r-- | src/providers/ipa/ipa_id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_id.c b/src/providers/ipa/ipa_id.c index b7ae81f6..b11abaa7 100644 --- a/src/providers/ipa/ipa_id.c +++ b/src/providers/ipa/ipa_id.c @@ -97,7 +97,7 @@ void ipa_account_info_handler(struct be_req *breq) } else { /* any account request is handled by sdap, * any invalid request is caught there. */ - return sdap_handle_account_info(breq, ctx); + return sdap_handle_account_info(breq, ctx, ctx->conn); } if (!req) { |