summaryrefslogtreecommitdiffstats
path: root/src/providers
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2013-08-21 17:22:59 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-08-28 18:06:57 +0200
commitb3458bbb5315b05d7ac1abc58f1c380761756603 (patch)
tree954cc6fffcb3141b2b5acbdffcbc5e69c290f7eb /src/providers
parent1c4144a6ce68dbd54c7c08a517d1f982ea57f19a (diff)
downloadsssd-b3458bbb5315b05d7ac1abc58f1c380761756603.tar.gz
sssd-b3458bbb5315b05d7ac1abc58f1c380761756603.tar.xz
sssd-b3458bbb5315b05d7ac1abc58f1c380761756603.zip
SYSDB: Store enumerate flag for subdomain
Diffstat (limited to 'src/providers')
-rw-r--r--src/providers/ad/ad_subdomains.c4
-rw-r--r--src/providers/ipa/ipa_subdomains.c3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/providers/ad/ad_subdomains.c b/src/providers/ad/ad_subdomains.c
index 0eebd4d98..afd2031fe 100644
--- a/src/providers/ad/ad_subdomains.c
+++ b/src/providers/ad/ad_subdomains.c
@@ -156,9 +156,9 @@ ad_subdom_store(struct ad_subdomains_ctx *ctx,
goto done;
}
- /* AD subdomains are currently all mpg */
+ /* AD subdomains are currently all mpg and do not enumerate */
ret = sysdb_subdomain_store(domain->sysdb, name, realm, flat, sid_str,
- true);
+ true, false);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, ("sysdb_subdomain_store failed.\n"));
goto done;
diff --git a/src/providers/ipa/ipa_subdomains.c b/src/providers/ipa/ipa_subdomains.c
index cb0d567b2..8f494fc18 100644
--- a/src/providers/ipa/ipa_subdomains.c
+++ b/src/providers/ipa/ipa_subdomains.c
@@ -462,7 +462,8 @@ static errno_t ipa_subdom_store(struct sss_domain_info *domain,
mpg = sdap_idmap_domain_has_algorithmic_mapping(sdap_idmap_ctx, id);
- ret = sysdb_subdomain_store(domain->sysdb, name, realm, flat, id, mpg);
+ ret = sysdb_subdomain_store(domain->sysdb, name, realm, flat,
+ id, mpg, false);
if (ret) {
DEBUG(SSSDBG_OP_FAILURE, ("sysdb_subdomain_store failed.\n"));
goto done;