summaryrefslogtreecommitdiffstats
path: root/source/libads
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-09-06 18:02:19 +0000
committerGerald Carter <jerry@samba.org>2003-09-06 18:02:19 +0000
commit89f6adf830187d020bf4b35d1a4b2b48c7a075d0 (patch)
treeae589cc483ba00c9196d4c6b736dfa3dcc65e05e /source/libads
parent9a603f6f077a2e1ddc41849cca3641421ecbaf11 (diff)
downloadsamba-89f6adf830187d020bf4b35d1a4b2b48c7a075d0.tar.gz
samba-89f6adf830187d020bf4b35d1a4b2b48c7a075d0.tar.xz
samba-89f6adf830187d020bf4b35d1a4b2b48c7a075d0.zip
revert retry loops in winbindd_ads as abartket points out, we
already have ads_search_retry() for this. However, neither domain_sid() nor sequence_nunber() used this function. So modify them to us ads_do_search_retry() so we can specify the base search DN and scope.
Diffstat (limited to 'source/libads')
-rw-r--r--source/libads/ldap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/libads/ldap.c b/source/libads/ldap.c
index 3de119b5d9f..e925750e0a0 100644
--- a/source/libads/ldap.c
+++ b/source/libads/ldap.c
@@ -1777,7 +1777,7 @@ ADS_STATUS ads_USN(ADS_STRUCT *ads, uint32 *usn)
ADS_STATUS status;
void *res;
- status = ads_do_search(ads, "", LDAP_SCOPE_BASE, "(objectclass=*)", attrs, &res);
+ status = ads_do_search_retry(ads, "", LDAP_SCOPE_BASE, "(objectclass=*)", attrs, &res);
if (!ADS_ERR_OK(status)) return status;
if (ads_count_replies(ads, res) != 1) {
@@ -1900,7 +1900,7 @@ ADS_STATUS ads_domain_sid(ADS_STRUCT *ads, DOM_SID *sid)
void *res;
ADS_STATUS rc;
- rc = ads_do_search(ads, ads->config.bind_path, LDAP_SCOPE_BASE, "(objectclass=*)",
+ rc = ads_do_search_retry(ads, ads->config.bind_path, LDAP_SCOPE_BASE, "(objectclass=*)",
attrs, &res);
if (!ADS_ERR_OK(rc)) return rc;
if (!ads_pull_sid(ads, res, "objectSid", sid)) {