diff options
author | Sumit Bose <sbose@redhat.com> | 2013-09-25 13:42:24 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-27 10:33:25 +0200 |
commit | c5711b0279ea85d69fe3c77dfb194360c346e1d7 (patch) | |
tree | ffc3b851532fdd0635f5b7b882f593aaa81681f4 /src/providers/ad | |
parent | 82d248c7e7d61dba7065a1a744823bc06c1b5b96 (diff) | |
download | sssd-c5711b0279ea85d69fe3c77dfb194360c346e1d7.tar.gz sssd-c5711b0279ea85d69fe3c77dfb194360c346e1d7.tar.bz2 sssd-c5711b0279ea85d69fe3c77dfb194360c346e1d7.zip |
IPA: store forest name for forest member domains
In order to fix https://fedorahosted.org/sssd/ticket/2093 the name of
the forest must be known for a member domain of the forest.
Diffstat (limited to 'src/providers/ad')
-rw-r--r-- | src/providers/ad/ad_subdomains.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ad/ad_subdomains.c b/src/providers/ad/ad_subdomains.c index b95f4e46..e8345ae5 100644 --- a/src/providers/ad/ad_subdomains.c +++ b/src/providers/ad/ad_subdomains.c @@ -160,7 +160,7 @@ ad_subdom_store(struct ad_subdomains_ctx *ctx, /* AD subdomains are currently all mpg and do not enumerate */ ret = sysdb_subdomain_store(domain->sysdb, name, realm, flat, sid_str, - true, false); + true, false, NULL); if (ret != EOK) { DEBUG(SSSDBG_OP_FAILURE, ("sysdb_subdomain_store failed.\n")); goto done; |