mirror of
https://github.com/curl/curl.git
synced 2026-08-05 09:56:26 +03:00
inline two comments
This commit is contained in:
parent
ac9dba09df
commit
ffb99912ac
1 changed files with 2 additions and 4 deletions
|
|
@ -1567,8 +1567,7 @@ static CURLcode cf_socket_send(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|||
|| (sockerr == SOCKEINTR) || (sockerr == SOCKEINPROGRESS)
|
||||
#endif
|
||||
) {
|
||||
/* EWOULDBLOCK */
|
||||
result = CURLE_AGAIN;
|
||||
result = CURLE_AGAIN; /* EWOULDBLOCK */
|
||||
}
|
||||
else {
|
||||
char buffer[STRERROR_LEN];
|
||||
|
|
@ -1628,8 +1627,7 @@ static CURLcode cf_socket_recv(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|||
|| (sockerr == SOCKEINTR)
|
||||
#endif
|
||||
) {
|
||||
/* EWOULDBLOCK */
|
||||
result = CURLE_AGAIN;
|
||||
result = CURLE_AGAIN; /* EWOULDBLOCK */
|
||||
}
|
||||
else {
|
||||
char buffer[STRERROR_LEN];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue