From: William A. Rowe Jr Date: Sun, 8 Oct 2000 06:08:58 +0000 (+0000) Subject: That's all I wrote... except for the mpm_winnt.c canonical error patch, X-Git-Tag: APACHE_2_0_ALPHA_7~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f63d97f8cd6cb6dbff27e6caa342b2c6e14df9e9;p=apache That's all I wrote... except for the mpm_winnt.c canonical error patch, my development tree is up-to-date. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86451 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 1f4b7a2373..66e420cbb1 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2749,7 +2749,7 @@ API_EXPORT(apr_status_t) ap_send_fd(apr_file_t *fd, request_rec *r, apr_off_t of do { rv = apr_read(fd, buf, &n); - } while (rv == APR_EINTR && !r->connection->aborted); + } while (APR_STATUS_IS_EINTR(rv) && !r->connection->aborted); /* Is this still the right check? maybe check for n==0 or rv == APR_EOF? */ if (n < 1) {