summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2001-05-02 20:01:43 +0000
committerstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2001-05-02 20:01:43 +0000
commit007f9a2fdec3c4ca0ff3f7c501c6f7ad2ba8b92f (patch)
treee56855aee1a79e3c54807611cb406b7918904eee /include
parent5a65a2c807363e220262ac79e44a9a81ed7d0a79 (diff)
downloadlibapr-007f9a2fdec3c4ca0ff3f7c501c6f7ad2ba8b92f.tar.gz
Win32: Include WAIT_TIMEOUT in the APR_STATUS_IS_ETIMEDOUT check.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61583 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_errno.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/apr_errno.h b/include/apr_errno.h
index 5aa49d133..32660888e 100644
--- a/include/apr_errno.h
+++ b/include/apr_errno.h
@@ -667,7 +667,8 @@ APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf,
#define APR_STATUS_IS_ECONNRESET(s) ((s) == APR_ECONNRESET \
|| (s) == APR_OS_START_SYSERR + WSAECONNRESET)
#define APR_STATUS_IS_ETIMEDOUT(s) ((s) == APR_ETIMEDOUT \
- || (s) == APR_OS_START_SYSERR + WSAETIMEDOUT)
+ || (s) == APR_OS_START_SYSERR + WSAETIMEDOUT) \
+ || (s) == APR_OS_START_SYSERR + WAIT_TIMEOUT)
#define APR_STATUS_IS_EHOSTUNREACH(s) ((s) == APR_EHOSTUNREACH \
|| (s) == APR_OS_START_SYSERR + WSAEHOSTUNREACH)
#define APR_STATUS_IS_ENETUNREACH(s) ((s) == APR_ENETUNREACH \