]> granicus.if.org Git - apache/commitdiff
That's all I wrote... except for the mpm_winnt.c canonical error patch,
authorWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 8 Oct 2000 06:08:58 +0000 (06:08 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 8 Oct 2000 06:08:58 +0000 (06:08 +0000)
  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

modules/http/http_protocol.c

index 1f4b7a23731eadeac4a492c82910b3483001051b..66e420cbb1a9db078feaec4af4c4cc90dde37136 100644 (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 {
             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) {