diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2012-02-03 15:32:43 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-02-04 08:27:16 -0500 |
commit | f393e23f264a299868a12bec40a390a7ecd65d10 (patch) | |
tree | 02eac272336089789d2544591416b5bfbd499ec6 /src/providers/ldap/sdap_async_groups.c | |
parent | 169fa5bd3edd34aa0db35681832bd7406e423c1b (diff) | |
download | sssd-f393e23f264a299868a12bec40a390a7ecd65d10.tar.gz sssd-f393e23f264a299868a12bec40a390a7ecd65d10.tar.bz2 sssd-f393e23f264a299868a12bec40a390a7ecd65d10.zip |
LDAP: Fix incorrect search timeouts
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 fe5dbd49..f8936264 100644 --- a/src/providers/ldap/sdap_async_groups.c +++ b/src/providers/ldap/sdap_async_groups.c @@ -2401,7 +2401,7 @@ sdap_nested_group_process_deref_call(struct tevent_req *req) state->opts->user_map[SDAP_AT_USER_NAME].name; sdap_attrs[SDAP_OPTS_GROUP + 1] = NULL; - timeout = dp_opt_get_int(state->opts->basic, SDAP_ENTRY_CACHE_TIMEOUT); + timeout = dp_opt_get_int(state->opts->basic, SDAP_SEARCH_TIMEOUT); subreq = sdap_deref_search_send(state, state->ev, state->opts, state->sh, state->derefctx->orig_dn, |