1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

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
This commit is contained in:
William A. Rowe Jr
2000-10-08 06:08:58 +00:00
parent 5c85623192
commit f63d97f8cd

View File

@@ -2749,7 +2749,7 @@ API_EXPORT(apr_status_t) ap_send_fd(apr_file_t *fd, request_rec *r, apr_off_t of
do { do {
rv = apr_read(fd, buf, &n); 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? */ /* Is this still the right check? maybe check for n==0 or rv == APR_EOF? */
if (n < 1) { if (n < 1) {