aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/curl/files
diff options
context:
space:
mode:
authorsunpoet <sunpoet@FreeBSD.org>2015-05-01 17:59:31 +0800
committersunpoet <sunpoet@FreeBSD.org>2015-05-01 17:59:31 +0800
commit034090a5cf6bce8b6e9cb7c6d223d67dbe011b3c (patch)
treef87346c511b0317282c86b123c0948d409118ca3 /ftp/curl/files
parentcb3bef9cfe6d0d1138d4a64d227d93e0a4a152f9 (diff)
downloadfreebsd-ports-gnome-034090a5cf6bce8b6e9cb7c6d223d67dbe011b3c.tar.gz
freebsd-ports-gnome-034090a5cf6bce8b6e9cb7c6d223d67dbe011b3c.tar.zst
freebsd-ports-gnome-034090a5cf6bce8b6e9cb7c6d223d67dbe011b3c.zip
- Update to 7.42.1
Changes: http://curl.haxx.se/changes.html
Diffstat (limited to 'ftp/curl/files')
-rw-r--r--ftp/curl/files/patch-lib-url.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/ftp/curl/files/patch-lib-url.c b/ftp/curl/files/patch-lib-url.c
index 00f26e2c50db..c560e2c3123d 100644
--- a/ftp/curl/files/patch-lib-url.c
+++ b/ftp/curl/files/patch-lib-url.c
@@ -1,12 +1,8 @@
-[1]
Description: Different handling of signals and threads.
Forwarded: not-needed
Author: Peter Pentchev <roam@FreeBSD.org>
Last-Update: 2010-12-18
-[2]
-Reference: https://github.com/bagder/curl/commit/fd9d3a1ef1f7b1cb5812d04bad07818efc6f3b3a.patch
-
--- lib/url.c.orig 2015-04-22 05:55:54 UTC
+++ lib/url.c
@@ -658,6 +658,10 @@ CURLcode Curl_open(struct SessionHandle
@@ -20,35 +16,3 @@ Reference: https://github.com/bagder/curl/commit/fd9d3a1ef1f7b1cb5812d04bad07818
data->wildcard.state = CURLWC_INIT;
data->wildcard.filelist = NULL;
data->set.fnmatch = ZERO_NULL;
-@@ -3069,9 +3073,11 @@ ConnectionExists(struct SessionHandle *d
- struct connectdata *check;
- struct connectdata *chosen = 0;
- bool canPipeline = IsPipeliningPossible(data, needle);
-+#ifdef USE_NTLM
- bool wantNTLMhttp = ((data->state.authhost.want & CURLAUTH_NTLM) ||
- (data->state.authhost.want & CURLAUTH_NTLM_WB)) &&
- (needle->handler->protocol & PROTO_FAMILY_HTTP) ? TRUE : FALSE;
-+#endif
- struct connectbundle *bundle;
-
- *force_reuse = FALSE;
-@@ -3208,6 +3214,7 @@ ConnectionExists(struct SessionHandle *d
- continue;
- }
-
-+#if defined(USE_NTLM)
- if((!(needle->handler->flags & PROTOPT_CREDSPERREQUEST)) ||
- (wantNTLMhttp || check->ntlm.state != NTLMSTATE_NONE)) {
- /* This protocol requires credentials per connection or is HTTP+NTLM,
-@@ -3217,10 +3224,9 @@ ConnectionExists(struct SessionHandle *d
- /* one of them was different */
- continue;
- }
--#if defined(USE_NTLM)
- credentialsMatch = TRUE;
--#endif
- }
-+#endif
-
- if(!needle->bits.httpproxy || needle->handler->flags&PROTOPT_SSL ||
- (needle->bits.httpproxy && check->bits.httpproxy &&