mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ctype.h args should be in the range of unsigned char (or EOF).
This commit is contained in:
parent
68ce55418f
commit
3ef684fd04
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ main( int argc, char **argv )
|
|||
break;
|
||||
|
||||
case 'l': /* the number of loops per client */
|
||||
if ( !isdigit( optarg[0] ) ) {
|
||||
if ( !isdigit( (unsigned char) optarg[0] ) ) {
|
||||
char **p,
|
||||
**l = ldap_str2charray( optarg, "," );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue