diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-12-25 23:35:27 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-12-25 23:35:27 +0000 |
commit | 4205973b4315300860b512193b389fbb683cf3a0 (patch) | |
tree | d5cb4650f686fdf50d9555973689670f94103c72 /source3/lib | |
parent | 3dba56747d3d34b6ccfeea24f53e38c1554f8f4a (diff) | |
download | samba-4205973b4315300860b512193b389fbb683cf3a0.tar.gz samba-4205973b4315300860b512193b389fbb683cf3a0.tar.bz2 samba-4205973b4315300860b512193b389fbb683cf3a0.zip |
(merge from 3.0)
ldap rebind sleep -> ldap replication sleep
While writing documentation for metze's patch, it became clear that this is a
better name.
Andrew Bartlett
(This used to be commit bac2c20adf6a8f541f227652d4da3d8f31f1a648)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/smbldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index 9dca043584..944f60c689 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -926,7 +926,7 @@ int smbldap_search(struct smbldap_state *ldap_state, tdiff = 1000000 *(tval.tv_sec - ldap_state->last_rebind.tv_sec) + (tval.tv_usec - ldap_state->last_rebind.tv_usec); - sleep_time = ((1000*lp_ldap_rebind_sleep())-tdiff)/1000; + sleep_time = ((1000*lp_ldap_replication_sleep())-tdiff)/1000; if (sleep_time > 0) { /* we wait for the LDAP replication */ |