mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:53:46 +03:00
Compiler warning fix
This commit is contained in:
parent
eee09e79e8
commit
733a184ce0
7 changed files with 26 additions and 20 deletions
|
|
@ -455,7 +455,7 @@ Curl_http_output_auth(struct connectdata *conn,
|
|||
if(auth) {
|
||||
infof(data, "Proxy auth using %s with user '%s'\n",
|
||||
auth, conn->proxyuser?conn->proxyuser:"");
|
||||
authproxy->multi = !authproxy->done;
|
||||
authproxy->multi = (bool)(!authproxy->done);
|
||||
}
|
||||
else
|
||||
authproxy->multi = FALSE;
|
||||
|
|
@ -525,7 +525,7 @@ Curl_http_output_auth(struct connectdata *conn,
|
|||
infof(data, "Server auth using %s with user '%s'\n",
|
||||
auth, conn->user);
|
||||
|
||||
authhost->multi = !authhost->done;
|
||||
authhost->multi = (bool)(!authhost->done);
|
||||
}
|
||||
else
|
||||
authhost->multi = FALSE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue