summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-06-28 05:08:50 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-06-28 05:08:50 +0000
commit68381f62a714352b4294f0944d421ad4e0f502d7 (patch)
treeccdc0de6db02371cd34eafd54ca1ae01e590795b
parent3ecb26d48d956b04c304cbe48f69b1a2aa66ba55 (diff)
downloadlibapr-68381f62a714352b4294f0944d421ad4e0f502d7.tar.gz
Fix up some recent additions
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61815 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_errno.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/apr_errno.h b/include/apr_errno.h
index cdca159e9..ac8f7db87 100644
--- a/include/apr_errno.h
+++ b/include/apr_errno.h
@@ -685,6 +685,7 @@ APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf,
|| (s) == APR_OS_START_SYSERR + WSAEHOSTUNREACH)
#define APR_STATUS_IS_ENETUNREACH(s) ((s) == APR_ENETUNREACH \
|| (s) == APR_OS_START_SYSERR + WSAENETUNREACH)
+#define APR_STATUS_IS_EFTYPE(s) ((s) == APR_EFTYPE)
#define APR_STATUS_IS_EPIPE(s) ((s) == APR_EPIPE \
|| (s) == APR_OS_START_SYSERR + ERROR_BROKEN_PIPE)
@@ -750,6 +751,7 @@ APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf,
#define APR_STATUS_IS_EHOSTUNREACH(s) ((s) == APR_EHOSTUNREACH)
#define APR_STATUS_IS_ENETUNREACH(s) ((s) == APR_ENETUNREACH)
#define APR_STATUS_IS_EFTYPE(s) ((s) == APR_EFTYPE)
+#define APR_STATUS_IS_EPIPE(s) ((s) == APR_EPIPE)
#endif /* !def OS2 || WIN32 */