mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
s4/ldap: use time_mono for reconnect timeout
This commit is contained in:
parent
54ca77183b
commit
d320aa1212
@ -499,7 +499,7 @@ _PUBLIC_ void ldap_set_reconn_params(struct ldap_connection *conn, int max_retri
|
||||
if (conn) {
|
||||
conn->reconnect.max_retries = max_retries;
|
||||
conn->reconnect.retries = 0;
|
||||
conn->reconnect.previous = time(NULL);
|
||||
conn->reconnect.previous = time_mono(NULL);
|
||||
}
|
||||
}
|
||||
|
||||
@ -507,7 +507,7 @@ _PUBLIC_ void ldap_set_reconn_params(struct ldap_connection *conn, int max_retri
|
||||
static void ldap_reconnect(struct ldap_connection *conn)
|
||||
{
|
||||
NTSTATUS status;
|
||||
time_t now = time(NULL);
|
||||
time_t now = time_mono(NULL);
|
||||
|
||||
/* do we have set up reconnect ? */
|
||||
if (conn->reconnect.max_retries == 0) return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user