mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:53:34 +03:00
tidy-up: move literals to right-side of if expressions (where missing)
Closes #20535
This commit is contained in:
parent
c6ac2de5b3
commit
85de995208
57 changed files with 115 additions and 115 deletions
|
|
@ -3103,7 +3103,7 @@ CURLcode Curl_http(struct Curl_easy *data, bool *done)
|
|||
data->req.upload_chunky = FALSE;
|
||||
|
||||
out:
|
||||
if(CURLE_TOO_LARGE == result)
|
||||
if(result == CURLE_TOO_LARGE)
|
||||
failf(data, "HTTP request too large");
|
||||
|
||||
/* clear userpwd and proxyuserpwd to avoid reusing old credentials
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue