aboutsummaryrefslogtreecommitdiff
path: root/ftp/curl/files/patch-lib-cookie.c
diff options
context:
space:
mode:
Diffstat (limited to 'ftp/curl/files/patch-lib-cookie.c')
-rw-r--r--ftp/curl/files/patch-lib-cookie.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/ftp/curl/files/patch-lib-cookie.c b/ftp/curl/files/patch-lib-cookie.c
deleted file mode 100644
index a854fd95fe31..000000000000
--- a/ftp/curl/files/patch-lib-cookie.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- lib/cookie.c.orig 2019-03-25 08:42:50 UTC
-+++ lib/cookie.c
-@@ -1085,6 +1085,8 @@ Curl_cookie_add(struct Curl_easy *data,
- return co;
- }
-
-+#endif /* CURL_DISABLE_HTTP || CURL_DISABLE_COOKIES */
-+
- /*
- * get_line() makes sure to only return complete whole lines that fit in 'len'
- * bytes and end with a newline.
-@@ -1112,6 +1114,7 @@ char *Curl_get_line(char *buf, int len,
- return NULL;
- }
-
-+#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
-
- /*****************************************************************************
- *