From: Kurt Zeilenga Date: Fri, 23 Apr 1999 20:47:32 +0000 (+0000) Subject: Should clear the write flag upon closing. X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~147 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=866f82409cebbbcee81b0768d6a259692d2942d7;p=openldap Should clear the write flag upon closing. --- diff --git a/servers/slapd/connection.c b/servers/slapd/connection.c index df33906357..7031c199cc 100644 --- a/servers/slapd/connection.c +++ b/servers/slapd/connection.c @@ -355,6 +355,7 @@ void connection_closing( Connection *c ) } /* wake write blocked operations */ + slapd_clr_write( c->c_sb.sb_sd, 1 ); ldap_pvt_thread_cond_signal( &c->c_write_cv ); } }