From: Brian Havard Date: Thu, 20 Apr 2000 16:08:07 +0000 (+0000) Subject: Another required ap_canonical_error(). X-Git-Tag: apache-doc-split-01~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af789a8fd609f03083a8c8706723e6e8e4fc9f36;p=thirdparty%2Fapache%2Fhttpd.git Another required ap_canonical_error(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85001 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 925d00b54d6..69003d92e8b 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2204,7 +2204,7 @@ API_EXPORT(long) ap_send_fb_length(BUFF *fb, request_rec *r, long length) (void) ap_rflush(r); break; } - else if (read_rv != APR_EAGAIN) { + else if (ap_canonical_error(read_rv) != APR_EAGAIN) { r->connection->aborted = 1; break; }