From e8dfbb83866b55f49782ec121ca44204235835bd Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 12 Apr 2001 13:35:04 +0000 Subject: [PATCH] Gotta use APR_STATUS_IS_EFOO() wrappers on all except our internally defined status codes (e.g. APR_EOF and APR_STATUS tests are ok.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88823 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_ext_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/experimental/mod_ext_filter.c b/modules/experimental/mod_ext_filter.c index 85ceb639eb..defc85492c 100644 --- a/modules/experimental/mod_ext_filter.c +++ b/modules/experimental/mod_ext_filter.c @@ -606,7 +606,7 @@ static apr_status_t pass_data_to_filter(ap_filter_t *f, const char *data, ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, f->r, "apr_poll()"); } - if (rv != APR_SUCCESS && rv != APR_EINTR) { + if (rv != APR_SUCCESS && !APR_STATUS_IS_EINTR(rv)) { /* some error such as APR_TIMEUP */ return rv; } -- 2.40.0