Fix idletimeout

This commit is contained in:
Kurt Zeilenga 2000-09-28 20:01:05 +00:00
parent 06a4be7ea0
commit 37c15dca40
2 changed files with 1 additions and 4 deletions

View File

@ -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

View File

@ -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;
}