aboutsummaryrefslogtreecommitdiff
path: root/lib/ssluse.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-02-28 12:20:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-02-28 12:20:08 +0000
commit9121b1f41dd4860089afba8227e94b85423ceed3 (patch)
tree3babc93e85ac7905dcb0027e46962446c50e4f90 /lib/ssluse.c
parent60e015d0c191b51e5766ebeb98c420ca0111e098 (diff)
the strequal and strnequal should now be called with the proper curl_ prefix
Diffstat (limited to 'lib/ssluse.c')
-rw-r--r--lib/ssluse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c
index 1125bc41b..4f51e31db 100644
--- a/lib/ssluse.c
+++ b/lib/ssluse.c
@@ -507,7 +507,7 @@ static int Get_SSL_Session(struct connectdata *conn,
if(!check->sessionid)
/* not session ID means blank entry */
continue;
- if(strequal(conn->name, check->name) &&
+ if(curl_strequal(conn->name, check->name) &&
(conn->remote_port == check->remote_port) ) {
/* yes, we have a session ID! */
data->state.sessionage++; /* increase general age */
@@ -688,7 +688,7 @@ cert_hostcheck(const char *certname, const char *hostname)
!strlen(hostname)) /* sanity check */
return 0;
- if(strequal(certname, hostname)) /* trivial case */
+ if(curl_strequal(certname, hostname)) /* trivial case */
return 1;
certdomain = certname + 1;
@@ -704,7 +704,7 @@ cert_hostcheck(const char *certname, const char *hostname)
if(tmp) {
/* ok the certname's domain matches the hostname, let's check that it's a
tail-match */
- if(strequal(tmp, certdomain))
+ if(curl_strequal(tmp, certdomain))
/* looks like a match. Just check we havent swallowed a '.' */
return tmp == strchr(hostname, '.');
else