mirror of
https://github.com/openssl/openssl.git
synced 2024-11-25 11:03:37 +08:00
'char' argument to islower must be converted to 'unsigned char'
This commit is contained in:
parent
b62a0c4cab
commit
a87e50a945
@ -87,7 +87,7 @@ void show_ciphers(const OBJ_NAME *name,void *bio_)
|
||||
BIO *bio=bio_;
|
||||
static int n;
|
||||
|
||||
if(!islower(*name->name))
|
||||
if(!islower((unsigned char)*name->name))
|
||||
return;
|
||||
|
||||
BIO_printf(bio,"-%-25s",name->name);
|
||||
|
Loading…
Reference in New Issue
Block a user