]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Reviewing my own commit logs ... dang did this look silly.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 25 Jul 2001 22:20:09 +0000 (22:20 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 25 Jul 2001 22:20:09 +0000 (22:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89718 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_autoindex.c

index 7d4b8093231a3fd2aeded4d07ef88cd480e6d265..236abf2ec680dc3da31fcd892b0a1e01a55e97b0 100644 (file)
@@ -923,7 +923,7 @@ static void do_emit_plain(request_rec *r, apr_file_t *f)
             n = sizeof(char) * AP_IOBUFSIZE;
            stat = apr_file_read(f, buf, &n);
        }
-       while (stat != APR_SUCCESS && APR_STATUS_IS_EINTR(stat));
+       while (APR_STATUS_IS_EINTR(stat));
        if (n == 0 || stat != APR_SUCCESS) {
             /* ###: better error here? */
            break;