mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
put 'break' only at the end of the 'case'
This commit is contained in:
parent
b968317900
commit
3f32b6fe17
@ -323,7 +323,6 @@ main( int argc, char **argv )
|
|||||||
|
|
||||||
vrFilter = cvalue;
|
vrFilter = cvalue;
|
||||||
version = LDAP_VERSION3;
|
version = LDAP_VERSION3;
|
||||||
break;
|
|
||||||
|
|
||||||
} else if ( strcasecmp( control, "pr" ) == 0 ) {
|
} else if ( strcasecmp( control, "pr" ) == 0 ) {
|
||||||
int num, tmp;
|
int num, tmp;
|
||||||
@ -341,7 +340,6 @@ main( int argc, char **argv )
|
|||||||
}
|
}
|
||||||
pageSize = (ber_int_t) tmp;
|
pageSize = (ber_int_t) tmp;
|
||||||
pagedResults = 1 + crit;
|
pagedResults = 1 + crit;
|
||||||
break;
|
|
||||||
|
|
||||||
#ifdef LDAP_CONTROL_SUBENTRIES
|
#ifdef LDAP_CONTROL_SUBENTRIES
|
||||||
} else if ( strcasecmp( control, "subentries" ) == 0 ) {
|
} else if ( strcasecmp( control, "subentries" ) == 0 ) {
|
||||||
@ -359,7 +357,6 @@ main( int argc, char **argv )
|
|||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
if( crit ) subentries *= -1;
|
if( crit ) subentries *= -1;
|
||||||
break;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
@ -367,6 +364,8 @@ main( int argc, char **argv )
|
|||||||
usage(prog);
|
usage(prog);
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
case 'f': /* input file */
|
case 'f': /* input file */
|
||||||
if( infile != NULL ) {
|
if( infile != NULL ) {
|
||||||
fprintf( stderr, "%s: -f previously specified\n", prog );
|
fprintf( stderr, "%s: -f previously specified\n", prog );
|
||||||
|
Loading…
Reference in New Issue
Block a user