summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_async_groups.c
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-01-07 23:33:45 -0500
committerJakub Hrozek <jhrozek@redhat.com>2013-01-15 10:53:02 +0100
commit2b7ee2a760e7fcc70f4970a3bbee6fbf8f2ccb9d (patch)
treec9e974ed04bd166b4dbab9dde3a6ae6442927a45 /src/providers/ldap/sdap_async_groups.c
parent3412d14d65490c32414e72ac20fe21bad53ceb45 (diff)
downloadsssd-2b7ee2a760e7fcc70f4970a3bbee6fbf8f2ccb9d.tar.gz
sssd-2b7ee2a760e7fcc70f4970a3bbee6fbf8f2ccb9d.tar.xz
sssd-2b7ee2a760e7fcc70f4970a3bbee6fbf8f2ccb9d.zip
Add domain argument to sysdb_search_groups()
Diffstat (limited to 'src/providers/ldap/sdap_async_groups.c')
-rw-r--r--src/providers/ldap/sdap_async_groups.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c
index fde83ee81..96cc7c0c1 100644
--- a/src/providers/ldap/sdap_async_groups.c
+++ b/src/providers/ldap/sdap_async_groups.c
@@ -3025,7 +3025,8 @@ sdap_nested_group_check_cache(TALLOC_CTX *mem_ctx,
/* It wasn't a user. Check whether it's a group */
if (ret == EOK) talloc_zfree(msgs);
- ret = sysdb_search_groups(tmp_ctx, sysdb, filter, attrs, &count, &msgs);
+ ret = sysdb_search_groups(tmp_ctx, sysdb, dom,
+ filter, attrs, &count, &msgs);
if (ret != EOK && ret != ENOENT) {
ret = EIO;
goto fail;