rbb 00/11/10 16:08:03
Modified: src/lib/apr/include apr_errno.h Log: Add a missing variable is APR_IS_SUCCESS macro Submitted by: Karl Fogel <[EMAIL PROTECTED]> Revision Changes Path 1.42 +1 -1 apache-2.0/src/lib/apr/include/apr_errno.h Index: apr_errno.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_errno.h,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- apr_errno.h 2000/10/09 06:46:48 1.41 +++ apr_errno.h 2000/11/11 00:08:03 1.42 @@ -360,7 +360,7 @@ */ #define APR_OS2_STATUS(e) (APR_FROM_OS_ERROR(e)) -#define APR_STATUS_IS_SUCCESS ((s) == APR_SUCCESS \ +#define APR_STATUS_IS_SUCCESS(s) ((s) == APR_SUCCESS \ || (s) == APR_OS_START_SYSERR + NO_ERROR) /* APR CANONICAL ERROR TESTS */