From c41c05d4f40fd28317e7ed971900e154def71c17 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 6 May 2003 08:19:36 +0000 Subject: Kevin Delafield reported another case where we didn't correctly check for EAGAIN but only EWOULDBLOCK, which caused badness on HPUX. We also check for and act the same on EINTR errors as well now. --- lib/sendf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/sendf.c b/lib/sendf.c index 94927c28c..1538061e8 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -278,7 +278,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 == err) || (EAGAIN == err)) + if((EWOULDBLOCK == err) || (EAGAIN == err) || (EINTR == err)) #endif { /* this is just a case of EWOULDBLOCK */ @@ -399,7 +399,7 @@ int Curl_read(struct connectdata *conn, #ifdef WIN32 if(WSAEWOULDBLOCK == err) #else - if(EWOULDBLOCK == err) + if((EWOULDBLOCK == err) || (EAGAIN == err) || (EINTR == err)) #endif return -1; } -- cgit v1.2.3