mirror of
https://github.com/curl/curl.git
synced 2026-05-30 13:57:28 +03:00
build: fix --disable-http-auth
Broken since 215db08 (precedes 7.75.0).
Reported-by: Benbuck Nason
Fixes https://github.com/curl/curl/issues/6567
This commit is contained in:
parent
145848e2d1
commit
98577e4029
1 changed files with 5 additions and 1 deletions
|
|
@ -871,13 +871,17 @@ Curl_http_output_auth(struct Curl_easy *data,
|
|||
#else
|
||||
/* when disabled */
|
||||
CURLcode
|
||||
Curl_http_output_auth(struct connectdata *conn,
|
||||
Curl_http_output_auth(struct Curl_easy *data,
|
||||
struct connectdata *conn,
|
||||
const char *request,
|
||||
Curl_HttpReq httpreq,
|
||||
const char *path,
|
||||
bool proxytunnel)
|
||||
{
|
||||
(void)data;
|
||||
(void)conn;
|
||||
(void)request;
|
||||
(void)httpreq;
|
||||
(void)path;
|
||||
(void)proxytunnel;
|
||||
return CURLE_OK;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue