mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-17 14:00:30 +08:00
Fix idletimeout
This commit is contained in:
parent
06a4be7ea0
commit
37c15dca40
1
CHANGES
1
CHANGES
@ -3,6 +3,7 @@ OpenLDAP 2.0 Change Log
|
||||
OpenLDAP 2.0.X Engineering
|
||||
Fixed slapd/ldbm/search confusing log message (ITS#771)
|
||||
Fixed slapd/sasl no cred bug
|
||||
Fixed slapd idletimeout lock bug (ITS#767)
|
||||
Fixed slurpd TLS initialization bug (ITS#768)
|
||||
|
||||
OpenLDAP 2.0.4 Release
|
||||
|
@ -169,8 +169,6 @@ int connections_timeout_idle(time_t now)
|
||||
int connindex;
|
||||
Connection* c;
|
||||
|
||||
ldap_pvt_thread_mutex_lock( &connections_mutex );
|
||||
|
||||
for( c = connection_first( &connindex );
|
||||
c != NULL;
|
||||
c = connection_next( c, &connindex ) )
|
||||
@ -184,8 +182,6 @@ int connections_timeout_idle(time_t now)
|
||||
}
|
||||
connection_done( c );
|
||||
|
||||
ldap_pvt_thread_mutex_unlock( &connections_mutex );
|
||||
|
||||
return i;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user