Skip to content
Snippets Groups Projects
Commit 51a2fd8e authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6412

parent dcd15bcd
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log ...@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.21 Engineering OpenLDAP 2.4.21 Engineering
Fixed liblutil for negative time offsets (ITS#6405) Fixed liblutil for negative time offsets (ITS#6405)
Fixed slapd looping with SSL/TLS connections (ITS#6412)
Fixed slapd use correct ce_type (ITS#6408) Fixed slapd use correct ce_type (ITS#6408)
Fixed slapo-translucent with back-null (ITS#6403) Fixed slapo-translucent with back-null (ITS#6403)
Fixed slapo-unique conflict with ppolicy (ITS#6270) Fixed slapo-unique conflict with ppolicy (ITS#6270)
......
...@@ -1362,8 +1362,8 @@ connection_read( ber_socket_t s, conn_readinfo *cri ) ...@@ -1362,8 +1362,8 @@ connection_read( ber_socket_t s, conn_readinfo *cri )
c->c_connid, (int) s, c->c_tls_ssf, c->c_ssf, 0 ); c->c_connid, (int) s, c->c_tls_ssf, c->c_ssf, 0 );
slap_sasl_external( c, c->c_tls_ssf, &authid ); slap_sasl_external( c, c->c_tls_ssf, &authid );
if ( authid.bv_val ) free( authid.bv_val ); if ( authid.bv_val ) free( authid.bv_val );
} else if ( rc == 1 ) { /* need to retry */ } else if ( rc == 1 && ber_sockbuf_ctrl( c->c_sb,
slapd_set_read( s, 0 ); LBER_SB_OPT_NEEDS_WRITE, NULL )) { /* need to retry */
slapd_set_write( s, 1 ); slapd_set_write( s, 1 );
connection_return( c ); connection_return( c );
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment