summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/ldap_common.c
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-01-07 23:53:02 -0500
committerJakub Hrozek <jhrozek@redhat.com>2013-01-15 10:53:02 +0100
commit80c6afa474d8a1e0198832bddfe5da75a9818b29 (patch)
treef318887d71caa3250e8a96c50d6d67d349e4f0fe /src/providers/ldap/ldap_common.c
parent84c986f9bb2767d8930b6f5d92d34b09b8fabe60 (diff)
downloadsssd-80c6afa474d8a1e0198832bddfe5da75a9818b29.tar.gz
sssd-80c6afa474d8a1e0198832bddfe5da75a9818b29.tar.xz
sssd-80c6afa474d8a1e0198832bddfe5da75a9818b29.zip
Add domain argument to sysdb_has/set_enumerated()
Diffstat (limited to 'src/providers/ldap/ldap_common.c')
-rw-r--r--src/providers/ldap/ldap_common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c
index a97dc34e2..0dcd5a4da 100644
--- a/src/providers/ldap/ldap_common.c
+++ b/src/providers/ldap/ldap_common.c
@@ -767,7 +767,8 @@ int sdap_id_setup_tasks(struct sdap_id_ctx *ctx)
* clients requesting get*ent information won't get an
* immediate reply with no entries
*/
- ret = sysdb_has_enumerated(ctx->be->sysdb, &has_enumerated);
+ ret = sysdb_has_enumerated(ctx->be->sysdb, ctx->be->domain,
+ &has_enumerated);
if (ret != EOK) {
return ret;
}