mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
remove pointer v. int lint from ber_sockbuf_ctrl.
This commit is contained in:
parent
e68b429d45
commit
61be4bd0c8
@ -92,8 +92,8 @@ ber_sockbuf_ctrl( Sockbuf *sb, int opt, void *arg )
|
||||
ret = 1;
|
||||
break;
|
||||
case LBER_SB_OPT_SET_NONBLOCK:
|
||||
ret = ( ber_pvt_socket_set_nonblock( sb->sb_fd,
|
||||
(int)arg ) ? -1 : 1 );
|
||||
ret = ber_pvt_socket_set_nonblock( sb->sb_fd, arg != NULL)
|
||||
? -1 : 1;
|
||||
break;
|
||||
case LBER_SB_OPT_DRAIN:
|
||||
/* Drain the data source to enable possible errors (e.g.
|
||||
|
@ -435,7 +435,7 @@ 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, (void *)1 ) < 0 ) {
|
||||
if( ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_NONBLOCK, ~ NULL ) < 0 ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"connection_init(%d, %s): set nonblocking failed\n",
|
||||
s, c->c_peer_name,0 );
|
||||
|
Loading…
Reference in New Issue
Block a user