mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 12:05:06 -05:00
indent fix by Ben Greear, I removed some braces for single-line conditional
expressions
This commit is contained in:
parent
a24a67bd1e
commit
a0c3edcc37
@ -981,9 +981,9 @@ CURLcode Curl_readwrite(struct connectdata *conn,
|
|||||||
/* only use the proper socket if the *_HOLD bit is not set simultaneously as
|
/* only use the proper socket if the *_HOLD bit is not set simultaneously as
|
||||||
then we are in rate limiting state in that transfer direction */
|
then we are in rate limiting state in that transfer direction */
|
||||||
|
|
||||||
if((k->keepon & KEEP_RECVBITS) == KEEP_RECV) {
|
if((k->keepon & KEEP_RECVBITS) == KEEP_RECV)
|
||||||
fd_read = conn->sockfd;
|
fd_read = conn->sockfd;
|
||||||
} else
|
else
|
||||||
fd_read = CURL_SOCKET_BAD;
|
fd_read = CURL_SOCKET_BAD;
|
||||||
|
|
||||||
if((k->keepon & KEEP_SENDBITS) == KEEP_SEND)
|
if((k->keepon & KEEP_SENDBITS) == KEEP_SEND)
|
||||||
@ -991,10 +991,9 @@ CURLcode Curl_readwrite(struct connectdata *conn,
|
|||||||
else
|
else
|
||||||
fd_write = CURL_SOCKET_BAD;
|
fd_write = CURL_SOCKET_BAD;
|
||||||
|
|
||||||
if(!select_res) { /* Call for select()/poll() only, if read/write/error
|
if(!select_res) /* Call for select()/poll() only, if read/write/error
|
||||||
status is not known. */
|
status is not known. */
|
||||||
select_res = Curl_socket_ready(fd_read, fd_write, 0);
|
select_res = Curl_socket_ready(fd_read, fd_write, 0);
|
||||||
}
|
|
||||||
|
|
||||||
if(select_res == CURL_CSELECT_ERR) {
|
if(select_res == CURL_CSELECT_ERR) {
|
||||||
failf(data, "select/poll returned error");
|
failf(data, "select/poll returned error");
|
||||||
|
Loading…
Reference in New Issue
Block a user