aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/sendf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index ddc61c6b3..9ea49e5c1 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -227,7 +227,7 @@ CURLcode Curl_write(struct connectdata *conn, int sockfd,
}
if(-1 == bytes_written) {
#ifdef WIN32
- if(EWOULDBLOCK == GetLastError())
+ if(WSAEWOULDBLOCK == GetLastError())
#else
if(EWOULDBLOCK == errno)
#endif
@@ -339,7 +339,7 @@ int Curl_read(struct connectdata *conn,
if(-1 == nread) {
#ifdef WIN32
- if(EWOULDBLOCK == GetLastError())
+ if(WSAEWOULDBLOCK == GetLastError())
#else
if(EWOULDBLOCK == errno)
#endif