diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-04-12 15:35:04 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-04-12 15:35:04 +0200 |
commit | e8dfbb83866b55f49782ec121ca44204235835bd (patch) | |
tree | 3be070d60a4850412296edefef77b2e7ae7b0b86 | |
parent | It's critical that apps use the APR_STATUS_IS_EFOO() canonicalization (diff) | |
download | apache2-e8dfbb83866b55f49782ec121ca44204235835bd.tar.xz apache2-e8dfbb83866b55f49782ec121ca44204235835bd.zip |
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
-rw-r--r-- | modules/experimental/mod_ext_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |