aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_tlsf.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-27 10:46:42 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-28 02:15:04 +0200
commit38e19eb96f2fa9c97f7786dcb988bf4b91c98149 (patch)
tree0e8b421b78da1d696ba15c0e3aa720a77c04b30e /crypto/x509v3/v3_tlsf.c
parentda32e04b5e879e433f8e7a584af999ed804be7d9 (diff)
downloadopenssl-38e19eb96f2fa9c97f7786dcb988bf4b91c98149.tar.gz
Change a call of OPENSSL_strcasecmp to strcasecmp
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'crypto/x509v3/v3_tlsf.c')
-rw-r--r--crypto/x509v3/v3_tlsf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_tlsf.c b/crypto/x509v3/v3_tlsf.c
index ffcb5b7d88..fec67243f8 100644
--- a/crypto/x509v3/v3_tlsf.c
+++ b/crypto/x509v3/v3_tlsf.c
@@ -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;