diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-22 11:03:01 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-28 18:06:57 +0200 |
commit | 1c4144a6ce68dbd54c7c08a517d1f982ea57f19a (patch) | |
tree | c81298a84cd4160834999821a179faf666fd4cc9 /src/providers/ipa | |
parent | 66edf42c51f8591c93204b6490c103fa51346f47 (diff) | |
download | sssd-1c4144a6ce68dbd54c7c08a517d1f982ea57f19a.tar.gz sssd-1c4144a6ce68dbd54c7c08a517d1f982ea57f19a.tar.bz2 sssd-1c4144a6ce68dbd54c7c08a517d1f982ea57f19a.zip |
LDAP: Make sdap_id_setup_tasks reusable for subdomains
Instead of always performing the setup for the main domain, the setup
can now be performed for subdomains as well.
Diffstat (limited to 'src/providers/ipa')
-rw-r--r-- | src/providers/ipa/ipa_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_init.c b/src/providers/ipa/ipa_init.c index cdcae5e6..a5ab8818 100644 --- a/src/providers/ipa/ipa_init.c +++ b/src/providers/ipa/ipa_init.c @@ -226,7 +226,7 @@ int sssm_ipa_id_init(struct be_ctx *bectx, ret = ipa_idmap_init(sdap_ctx, sdap_ctx, &sdap_ctx->opts->idmap_ctx); if (ret != EOK) goto done; - ret = sdap_id_setup_tasks(sdap_ctx); + ret = ldap_id_setup_tasks(sdap_ctx); if (ret != EOK) { goto done; } |