aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorElia Tufarolo <elia.tufarolo@hcl.com>2018-11-13 18:30:56 +0100
committerDaniel Stenberg <daniel@haxx.se>2018-11-16 23:38:47 +0100
commit07ebaf837843124ee670e5b8c218b80b92e06e47 (patch)
treec71c4f254217f9143030d654664831af94da5972 /lib/http.c
parent6d0e487f9f546560593f2aeed7f9e90c7f8f9684 (diff)
downloadgnurl-07ebaf837843124ee670e5b8c218b80b92e06e47.tar.gz
gnurl-07ebaf837843124ee670e5b8c218b80b92e06e47.tar.bz2
gnurl-07ebaf837843124ee670e5b8c218b80b92e06e47.zip
http_negotiate: do not close connection until negotiation is completed
Fix HTTP POST using CURLAUTH_NEGOTIATE. Closes #3275
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 46ac15a6e..afc919b09 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -610,7 +610,6 @@ output_auth_headers(struct connectdata *conn,
result = Curl_output_negotiate(conn, proxy);
if(result)
return result;
- authstatus->done = TRUE;
negdata->state = GSS_AUTHSENT;
}
else