aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-03-11 19:12:07 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-03-11 19:12:07 +0000
commite5b7dc56e6ea09577b8194f992e6d104a84ee4af (patch)
tree822b5f997e9f170db5e60e46faf6ae07f23d2f8d
parentc2d8025a0ae50200592ef87a386b742c07352027 (diff)
syntax error
-rw-r--r--lib/sendf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index 26d1831d8..12721fa26 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -274,7 +274,7 @@ CURLcode Curl_write(struct connectdata *conn, int sockfd,
may be EWOULDBLOCK or on some systems EAGAIN when it returned
due to its inability to send off data without blocking. We
therefor treat both error codes the same here */
- if((EWOULDBLOCK == errno) || ((EAGAIN == errno))
+ if((EWOULDBLOCK == errno) || (EAGAIN == errno))
#endif
{
/* this is just a case of EWOULDBLOCK */