diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-08-19 18:06:41 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-09-06 14:25:36 -0400 |
commit | 9b5c5f041e92802aa074037d283674cb6eca1a23 (patch) | |
tree | 1b9a8b2e2d0a2bee3cf66554d2fef83116dd91bd /src/providers/ldap/sdap_async_groups.c | |
parent | f1828234a850dd28465425248a83a993f262918f (diff) | |
download | sssd-9b5c5f041e92802aa074037d283674cb6eca1a23.tar.gz sssd-9b5c5f041e92802aa074037d283674cb6eca1a23.tar.xz sssd-9b5c5f041e92802aa074037d283674cb6eca1a23.zip |
Allow turning dereference off by setting the threshold to 0
Diffstat (limited to 'src/providers/ldap/sdap_async_groups.c')
-rw-r--r-- | src/providers/ldap/sdap_async_groups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c index b3f6bb707..f887651d9 100644 --- a/src/providers/ldap/sdap_async_groups.c +++ b/src/providers/ldap/sdap_async_groups.c @@ -1751,7 +1751,7 @@ static struct tevent_req *sdap_nested_group_process_send( state->member_index = 0; - if (sdap_has_deref_support(state->sh)) { + if (sdap_has_deref_support(state->sh, state->opts)) { state->derefctx = talloc_zero(state, struct sdap_deref_ctx); if (!state->derefctx) goto immediate; |