mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
~ NULL was a bad idea.
This commit is contained in:
parent
da355b317e
commit
88848d3aea
1 changed files with 2 additions and 2 deletions
|
|
@ -435,10 +435,10 @@ long connection_init(
|
|||
#ifdef LDAP_DEBUG
|
||||
ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug, INT_MAX, NULL );
|
||||
#endif
|
||||
if( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_NONBLOCK, ~ NULL ) < 0 ) {
|
||||
if( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_NONBLOCK, c /* non-NULL */ ) < 0 ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"connection_init(%d, %s): set nonblocking failed\n",
|
||||
s, c->c_peer_name,0 );
|
||||
s, c->c_peer_name, 0 );
|
||||
}
|
||||
|
||||
id = c->c_connid = conn_nextid++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue