projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da32e04
)
Change a call of OPENSSL_strcasecmp to strcasecmp
author
Richard Levitte
<levitte@openssl.org>
Fri, 27 May 2016 08:46:42 +0000
(10:46 +0200)
committer
Richard 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
patch
|
blob
|
history
diff --git
a/crypto/x509v3/v3_tlsf.c
b/crypto/x509v3/v3_tlsf.c
index ffcb5b7d88248fc5c6f8370297540edefd85a05a..fec67243f8d38d3b5e8a631bd0e2fade8a9bbf84 100644
(file)
--- 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;