diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-03-19 22:15:32 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-03-19 22:15:32 +0000 |
commit | 7b50eef89e06ab58aeeb2377342933f4bf505f1e (patch) | |
tree | 497d6a6e0e66c1b191c436cad690809c2674410f | |
parent | b462700e53df7fa64a4cd019054eae9e7f746aef (diff) | |
download | samba-7b50eef89e06ab58aeeb2377342933f4bf505f1e.tar.gz samba-7b50eef89e06ab58aeeb2377342933f4bf505f1e.tar.bz2 samba-7b50eef89e06ab58aeeb2377342933f4bf505f1e.zip |
updated winbindd to used paged ldap searches for all ldap queries
(This used to be commit 41e1560798b7eb19575b0d97a5e489eb170bcfd5)
-rw-r--r-- | source3/nsswitch/winbindd_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_ads.c b/source3/nsswitch/winbindd_ads.c index 2b5234fc96..afd6a528d3 100644 --- a/source3/nsswitch/winbindd_ads.c +++ b/source3/nsswitch/winbindd_ads.c @@ -48,7 +48,7 @@ ADS_STATUS ads_do_search_retry(ADS_STRUCT *ads, const char *bind_path, int scope bp = strdup(bind_path); while (count--) { - status = ads_do_search(ads, bp, scope, exp, attrs, res); + status = ads_do_search_all(ads, bp, scope, exp, attrs, res); if (ADS_ERR_OK(status)) { DEBUG(5,("Search for %s gave %d replies\n", exp, ads_count_replies(ads, *res))); |