diff options
-rw-r--r-- | lib/http.c | 1 | ||||
-rw-r--r-- | lib/transfer.c | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index e0c5d73e7..277e90266 100644 --- a/lib/http.c +++ b/lib/http.c @@ -92,6 +92,7 @@ #include "http_ntlm.h" #include "http_negotiate.h" #include "url.h" +#include "share.h" #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> diff --git a/lib/transfer.c b/lib/transfer.c index c4b1c90fa..8c42cb7d4 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -97,6 +97,7 @@ #include "http_digest.h" #include "http_ntlm.h" #include "http_negotiate.h" +#include "share.h" #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> @@ -706,7 +707,8 @@ CURLcode Curl_readwrite(struct connectdata *conn, } else if(data->cookies && checkprefix("Set-Cookie:", k->p)) { - Curl_share_lock(data, CURL_LOCK_DATA_COOKIE, CURL_LOCK_ACCESS_SINGLE); + Curl_share_lock(data, CURL_LOCK_DATA_COOKIE, + CURL_LOCK_ACCESS_SINGLE); Curl_cookie_add(data->cookies, TRUE, k->p+11, /* If there is a custom-set Host: name, use it here, or else use real peer host name. */ |