fix inconsistent indentation

This commit is contained in:
Pierangelo Masarati 2005-05-21 14:52:19 +00:00
parent 546cba035c
commit f103589cc3

View File

@ -288,9 +288,10 @@ wait4msg(
} }
#endif /* LDAP_DEBUG */ #endif /* LDAP_DEBUG */
if( (*result = chkResponseList(ld, msgid, all)) != NULL ) { if ( (*result = chkResponseList(ld, msgid, all)) != NULL ) {
rc = (*result)->lm_msgtype; rc = (*result)->lm_msgtype;
} else {
} else {
int lc_ready = 0; int lc_ready = 0;
for ( lc = ld->ld_conns; lc != NULL; lc = nextlc ) { for ( lc = ld->ld_conns; lc != NULL; lc = nextlc ) {
@ -300,11 +301,11 @@ wait4msg(
rc = try_read1msg( ld, msgid, all, lc->lconn_sb, rc = try_read1msg( ld, msgid, all, lc->lconn_sb,
&lc, result ); &lc, result );
lc_ready = 1; lc_ready = 1;
break; break;
} }
} }
if ( !lc_ready ) { if ( !lc_ready ) {
rc = ldap_int_select( ld, tvp ); rc = ldap_int_select( ld, tvp );
#ifdef LDAP_DEBUG #ifdef LDAP_DEBUG
if ( rc == -1 ) { if ( rc == -1 ) {