diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-24 14:43:57 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-18 19:06:35 +0200 |
commit | 21f749c9300a1a51f3eb83d7f1483ec2fe15b3cc (patch) | |
tree | a32d18426c74257badefa0bb62ff4bc2983d0806 /src/providers/ipa/ipa_subdomains.c | |
parent | 31ad608192c24eb56cf7a8294f6bfc080893193c (diff) | |
download | sssd-21f749c9300a1a51f3eb83d7f1483ec2fe15b3cc.tar.gz sssd-21f749c9300a1a51f3eb83d7f1483ec2fe15b3cc.tar.bz2 sssd-21f749c9300a1a51f3eb83d7f1483ec2fe15b3cc.zip |
LDAP: sdap_id_setup_tasks accepts a custom enum request
AD provider will override the default with its own.
Diffstat (limited to 'src/providers/ipa/ipa_subdomains.c')
-rw-r--r-- | src/providers/ipa/ipa_subdomains.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_subdomains.c b/src/providers/ipa/ipa_subdomains.c index c28af0e7..496af42b 100644 --- a/src/providers/ipa/ipa_subdomains.c +++ b/src/providers/ipa/ipa_subdomains.c @@ -186,7 +186,9 @@ ipa_ad_ctx_new(struct be_ctx *be_ctx, } ret = sdap_id_setup_tasks(ad_id_ctx->sdap_id_ctx, - ad_id_ctx->ldap_ctx, sdom); + ad_id_ctx->ldap_ctx, sdom, + ldap_enumeration_send, + ldap_enumeration_recv); if (ret != EOK) { talloc_free(ad_options); return ret; |