Commit 11c5f3d9 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Reviewing my own commit logs ... dang did this look silly.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89718 13f79535-47bb-0310-9956-ffa450edef68
parent b99345d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;