'char' argument to islower must be converted to 'unsigned char'

This commit is contained in:
Bodo Möller 2001-01-10 14:58:22 +00:00
parent b62a0c4cab
commit a87e50a945

View File

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