mirror of
https://github.com/curl/curl.git
synced 2026-07-27 10:47:18 +03:00
tidy-up: replace (0 == expressions
This commit is contained in:
parent
2530adcf4d
commit
bc72ca01e9
17 changed files with 23 additions and 23 deletions
|
|
@ -3949,7 +3949,7 @@ static CURLcode http_on_response(struct Curl_easy *data,
|
|||
like to call http2_handle_stream_close to properly close a
|
||||
stream. In order to do this, we keep reading until we
|
||||
close the stream. */
|
||||
if((0 == k->maxdownload) && (k->httpversion_sent < 20))
|
||||
if((k->maxdownload == 0) && (k->httpversion_sent < 20))
|
||||
k->download_done = TRUE;
|
||||
|
||||
/* final response without error, prepare to receive the body */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue