Loading lib/http_ntlm.h +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ typedef enum { } CURLntlm; /* this is for ntlm header input */ CURLntlm Curl_input_ntlm(struct connectdata *conn, char *header); CURLntlm Curl_input_ntlm(struct connectdata *conn, bool proxy, char *header); /* this is for creating ntlm header output */ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); Loading lib/transfer.c +1 −1 Original line number Diff line number Diff line Loading @@ -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 */ Loading Loading
lib/http_ntlm.h +1 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,7 @@ typedef enum { } CURLntlm; /* this is for ntlm header input */ CURLntlm Curl_input_ntlm(struct connectdata *conn, char *header); CURLntlm Curl_input_ntlm(struct connectdata *conn, bool proxy, char *header); /* this is for creating ntlm header output */ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); Loading
lib/transfer.c +1 −1 Original line number Diff line number Diff line Loading @@ -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 */ Loading