From e5b7dc56e6ea09577b8194f992e6d104a84ee4af Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 11 Mar 2003 19:12:07 +0000 Subject: syntax error --- lib/sendf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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 */ -- cgit v1.2.3