remove pointer v. int lint from ber_sockbuf_ctrl.

This commit is contained in:
Kurt Zeilenga 2000-06-08 01:08:01 +00:00
parent e68b429d45
commit 61be4bd0c8
2 changed files with 3 additions and 3 deletions

View File

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

View File

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