Change a call of OPENSSL_strcasecmp to strcasecmp
authorRichard Levitte <levitte@openssl.org>
Fri, 27 May 2016 08:46:42 +0000 (10:46 +0200)
committerRichard Levitte <levitte@openssl.org>
Sat, 28 May 2016 00:15:04 +0000 (02:15 +0200)
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
crypto/x509v3/v3_tlsf.c

index ffcb5b7d88248fc5c6f8370297540edefd85a05a..fec67243f8d38d3b5e8a631bd0e2fade8a9bbf84 100644 (file)
@@ -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;