From 3a68c04a7727b72c1e84310eeaf5f0a5952ddd7d Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Sun, 8 Oct 2000 06:05:00 +0000 Subject: [PATCH] Missed it... another canonical error fix git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86449 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_autoindex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index cf4ec7d2b0..db23d9a7a1 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -921,7 +921,7 @@ static void do_emit_plain(request_rec *r, apr_file_t *f) n = sizeof(char) * IOBUFSIZE; stat = apr_read(f, buf, &n); } - while (stat != APR_SUCCESS && stat == EINTR); + while (stat != APR_SUCCESS && APR_STATUS_IS_EINTR(stat)); if (n == -1 || n == 0) { break; } -- 2.50.1