aboutsummaryrefslogtreecommitdiff
path: root/lib/sslgen.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sslgen.c')
-rw-r--r--lib/sslgen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sslgen.c b/lib/sslgen.c
index 1bfeda713..ac6991bdc 100644
--- a/lib/sslgen.c
+++ b/lib/sslgen.c
@@ -57,7 +57,7 @@
#include "nssg.h" /* NSS versions */
#include "qssl.h" /* QSOSSL versions */
#include "sendf.h"
-#include "strequal.h"
+#include "rawstr.h"
#include "url.h"
#include "memory.h"
#include "progress.h"
@@ -68,7 +68,7 @@ static bool safe_strequal(char* str1, char* str2)
{
if(str1 && str2)
/* both pointers point to something then compare them */
- return (bool)(0 != strequal(str1, str2));
+ return (bool)(0 != Curl_raw_equal(str1, str2));
else
/* if both pointers are NULL then treat them as equal */
return (bool)(!str1 && !str2);