From 620934e3bf49075b89620a44d63e8a33e4ddeb8a Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Tue, 23 Oct 2001 20:46:02 +0000 Subject: [PATCH] set the c->aborted flag when we get EPIPE git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91650 13f79535-47bb-0310-9956-ffa450edef68 --- server/core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/core.c b/server/core.c index dd572a98d5..d4f2aeaa29 100644 --- a/server/core.c +++ b/server/core.c @@ -3183,7 +3183,8 @@ static apr_status_t core_output_filter(ap_filter_t *f, apr_bucket_brigade *b) if (more) apr_brigade_destroy(more); if (APR_STATUS_IS_ECONNABORTED(rv) || - APR_STATUS_IS_ECONNRESET(rv)) { + APR_STATUS_IS_ECONNRESET(rv) || + APR_STATUS_IS_EPIPE(rv)) { c->aborted = 1; } return rv; -- 2.50.1