mirror of
https://github.com/curl/curl.git
synced 2026-07-25 02:37:18 +03:00
transfer: replace false with FALSE
Follow-up to c9afcecee9 #16170
Closes #16177
This commit is contained in:
parent
ad9a8b7754
commit
86ee64901f
1 changed files with 2 additions and 2 deletions
|
|
@ -176,9 +176,9 @@ static bool xfer_recv_shutdown_started(struct Curl_easy *data)
|
|||
int sockindex;
|
||||
|
||||
if(!data || !data->conn)
|
||||
return false;
|
||||
return FALSE;
|
||||
if(data->conn->sockfd == CURL_SOCKET_BAD)
|
||||
return false;
|
||||
return FALSE;
|
||||
sockindex = (data->conn->sockfd == data->conn->sock[SECONDARYSOCKET]);
|
||||
return Curl_shutdown_started(data, sockindex);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue