We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
configure with --disable-http-auth
--disable-http-auth
building curl shoud succeed
7.83.0
The problem is here:
curl/lib/http.c
Line 1920 in 685170b
This call to Curl_allow_auth_to_host() is not protected by a CURL_DISABLE_HTTP_AUTH check but the implementation of the function is.
Curl_allow_auth_to_host()
CURL_DISABLE_HTTP_AUTH
The text was updated successfully, but these errors were encountered:
http: move Curl_allow_auth_to_host()
fd2fa61
It was mistakenly put within the CURL_DISABLE_HTTP_AUTH #ifdef Reported-by: Michael Olbrich Fixes #8772
Fixed in commit d7b970e
Sorry, something went wrong.
d7b970e
It was mistakenly put within the CURL_DISABLE_HTTP_AUTH #ifdef Reported-by: Michael Olbrich Fixes curl#8772 Closes curl#8775
bagder
Successfully merging a pull request may close this issue.
I did this
configure with
--disable-http-auth
I expected the following
building curl shoud succeed
curl/libcurl version
7.83.0
The problem is here:
curl/lib/http.c
Line 1920 in 685170b
This call to
Curl_allow_auth_to_host()
is not protected by aCURL_DISABLE_HTTP_AUTH
check but the implementation of the function is.The text was updated successfully, but these errors were encountered: