summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2016-10-31 12:51:45 +0100
committerDan Fandrich <dan@coneharvesters.com>2016-10-31 12:57:58 +0100
commit9363f1a37f803ac92cbe88e407035c58e441b986 (patch)
tree20801ee30143081bece6804de6f6d538e1920b69
parent4f97d9832cdfc67cf84df39a245d9d2b205ab0ab (diff)
downloadgnurl-9363f1a37f803ac92cbe88e407035c58e441b986.tar.gz
gnurl-9363f1a37f803ac92cbe88e407035c58e441b986.tar.bz2
gnurl-9363f1a37f803ac92cbe88e407035c58e441b986.zip
strcasecompare: replaced remaining rawstr.h with strcase.h
This is a followup to commit 811a693b
-rw-r--r--lib/vtls/cyassl.c2
-rw-r--r--lib/vtls/gtls.c2
-rw-r--r--lib/vtls/mbedtls.c1
-rw-r--r--lib/vtls/nss.c2
-rw-r--r--lib/vtls/polarssl.c2
-rw-r--r--projects/generate.bat4
6 files changed, 6 insertions, 7 deletions
diff --git a/lib/vtls/cyassl.c b/lib/vtls/cyassl.c
index 492d812d2..5d6dbfb8c 100644
--- a/lib/vtls/cyassl.c
+++ b/lib/vtls/cyassl.c
@@ -55,7 +55,7 @@ and that's a problem since options.h hasn't been included yet. */
#include "parsedate.h"
#include "connect.h" /* for the connect timeout */
#include "select.h"
-#include "rawstr.h"
+#include "strcase.h"
#include "x509asn1.h"
#include "curl_printf.h"
diff --git a/lib/vtls/gtls.c b/lib/vtls/gtls.c
index adc010b6a..5c87c7fe3 100644
--- a/lib/vtls/gtls.c
+++ b/lib/vtls/gtls.c
@@ -52,7 +52,7 @@
#include "parsedate.h"
#include "connect.h" /* for the connect timeout */
#include "select.h"
-#include "rawstr.h"
+#include "strcase.h"
#include "warnless.h"
#include "x509asn1.h"
#include "curl_printf.h"
diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c
index bd3e1ceac..24249dd65 100644
--- a/lib/vtls/mbedtls.c
+++ b/lib/vtls/mbedtls.c
@@ -50,7 +50,6 @@
#include "parsedate.h"
#include "connect.h" /* for the connect timeout */
#include "select.h"
-#include "rawstr.h"
#include "polarssl_threadlock.h"
/* The last 3 #include files should be in this order */
diff --git a/lib/vtls/nss.c b/lib/vtls/nss.c
index 1c7594d7c..85654a2cf 100644
--- a/lib/vtls/nss.c
+++ b/lib/vtls/nss.c
@@ -64,7 +64,7 @@
#include <ocsp.h>
#endif
-#include "rawstr.h"
+#include "strcase.h"
#include "warnless.h"
#include "x509asn1.h"
diff --git a/lib/vtls/polarssl.c b/lib/vtls/polarssl.c
index 49483926e..18b564e02 100644
--- a/lib/vtls/polarssl.c
+++ b/lib/vtls/polarssl.c
@@ -54,7 +54,7 @@
#include "parsedate.h"
#include "connect.h" /* for the connect timeout */
#include "select.h"
-#include "rawstr.h"
+#include "strcase.h"
#include "polarssl_threadlock.h"
#include "curl_printf.h"
#include "curl_memory.h"
diff --git a/projects/generate.bat b/projects/generate.bat
index 8209a5dd6..92df6255a 100644
--- a/projects/generate.bat
+++ b/projects/generate.bat
@@ -264,14 +264,14 @@ rem
for /f "delims=" %%r in ('dir /b ..\src\*.rc') do call :element %1 src "%%r" %3
) else if "!var!" == "CURL_SRC_X_C_FILES" (
call :element %1 lib "strtoofft.c" %3
- call :element %1 lib "rawstr.c" %3
+ call :element %1 lib "strcase.c" %3
call :element %1 lib "nonblock.c" %3
call :element %1 lib "warnless.c" %3
) else if "!var!" == "CURL_SRC_X_H_FILES" (
call :element %1 lib "config-win32.h" %3
call :element %1 lib "curl_setup.h" %3
call :element %1 lib "strtoofft.h" %3
- call :element %1 lib "rawstr.h" %3
+ call :element %1 lib "strcase.h" %3
call :element %1 lib "nonblock.h" %3
call :element %1 lib "warnless.h" %3
) else if "!var!" == "CURL_LIB_C_FILES" (