aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-07-22 09:58:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-07-22 09:58:57 +0000
commitfb731eb3e749d5a69bc61c827b902f1afea90f9e (patch)
treeb75bbe747eb37bb0c207af0ed2b790437c6ba73f /lib/transfer.c
parent6f2a4d290fd0ebe3bf5bed7bb11fd0891323cec9 (diff)
The NTLM functions now take a 'proxy' argument as well.
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 3a6ad2203..410c173a2 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -754,7 +754,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
if(data->state.authwant == CURLAUTH_NTLM) {
/* NTLM authentication is activated */
CURLntlm ntlm =
- Curl_input_ntlm(conn, start);
+ Curl_input_ntlm(conn, FALSE, start);
if(CURLNTLM_BAD != ntlm)
conn->newurl = strdup(data->change.url); /* clone string */