diff options
Diffstat (limited to 'libs/libcurl/src/http_proxy.c')
-rw-r--r-- | libs/libcurl/src/http_proxy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/libcurl/src/http_proxy.c b/libs/libcurl/src/http_proxy.c index 58a157b391..a2fb414a0c 100644 --- a/libs/libcurl/src/http_proxy.c +++ b/libs/libcurl/src/http_proxy.c @@ -38,12 +38,12 @@ #include "cf-h1-proxy.h"
#include "cf-h2-proxy.h"
#include "connect.h"
-#include "curlx.h"
+#include "strcase.h"
#include "vtls/vtls.h"
#include "transfer.h"
#include "multiif.h"
#include "vauth/vauth.h"
-#include "strparse.h"
+#include "curlx/strparse.h"
/* The last 3 #include files should be in this order */
#include "curl_printf.h"
@@ -109,7 +109,7 @@ static CURLcode dynhds_add_custom(struct Curl_easy *data, name = headers->data;
namelen = ptr - headers->data;
ptr++; /* pass the colon */
- Curl_str_passblanks(&ptr);
+ curlx_str_passblanks(&ptr);
if(*ptr) {
value = ptr;
valuelen = strlen(value);
@@ -131,7 +131,7 @@ static CURLcode dynhds_add_custom(struct Curl_easy *data, name = headers->data;
namelen = ptr - headers->data;
ptr++; /* pass the semicolon */
- Curl_str_passblanks(&ptr);
+ curlx_str_passblanks(&ptr);
if(!*ptr) {
/* quirk #2, send an empty header */
value = "";
|