Commit 42a4c504 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  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
parent 7c04d39f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
                }