summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd_ads.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-03-19 22:15:32 +0000
committerAndrew Tridgell <tridge@samba.org>2002-03-19 22:15:32 +0000
commit7b50eef89e06ab58aeeb2377342933f4bf505f1e (patch)
tree497d6a6e0e66c1b191c436cad690809c2674410f /source3/nsswitch/winbindd_ads.c
parentb462700e53df7fa64a4cd019054eae9e7f746aef (diff)
downloadsamba-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)
Diffstat (limited to 'source3/nsswitch/winbindd_ads.c')
-rw-r--r--source3/nsswitch/winbindd_ads.c2
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)));