diff options
author | Simo Sorce <simo@redhat.com> | 2013-01-07 23:53:02 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-01-15 10:53:02 +0100 |
commit | 80c6afa474d8a1e0198832bddfe5da75a9818b29 (patch) | |
tree | f318887d71caa3250e8a96c50d6d67d349e4f0fe /src/providers/ldap/ldap_common.c | |
parent | 84c986f9bb2767d8930b6f5d92d34b09b8fabe60 (diff) | |
download | sssd-80c6afa474d8a1e0198832bddfe5da75a9818b29.tar.gz sssd-80c6afa474d8a1e0198832bddfe5da75a9818b29.tar.bz2 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.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c index a97dc34e..0dcd5a4d 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; } |