stoddard 01/05/02 13:01:49
Modified: include apr_errno.h
Log:
Win32: Include WAIT_TIMEOUT in the APR_STATUS_IS_ETIMEDOUT check.
Revision Changes Path
1.59 +2 -1 apr/include/apr_errno.h
Index: apr_errno.h
===================================================================
RCS file: /home/cvs/apr/include/apr_errno.h,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- apr_errno.h 2001/04/08 08:02:40 1.58
+++ apr_errno.h 2001/05/02 20:01:43 1.59
@@ -667,7 +667,8 @@
#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 \