Change a call of OPENSSL_strcasecmp to strcasecmp
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
This commit is contained in:
parent
da32e04b5e
commit
38e19eb96f
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ static TLS_FEATURE *v2i_TLS_FEATURE(const X509V3_EXT_METHOD *method,
|
|||
extval = val->name;
|
||||
|
||||
for (j = 0; j < OSSL_NELEM(tls_feature_tbl); j++)
|
||||
if (OPENSSL_strcasecmp(extval, tls_feature_tbl[j].name) == 0)
|
||||
if (strcasecmp(extval, tls_feature_tbl[j].name) == 0)
|
||||
break;
|
||||
if (j < OSSL_NELEM(tls_feature_tbl))
|
||||
tlsextid = tls_feature_tbl[j].num;
|
||||
|
|
Loading…
Reference in a new issue