From: William A. Rowe Jr Date: Tue, 5 Nov 2002 06:38:41 +0000 (+0000) Subject: Actually, the APR_ECONNABORTED (EOS-only brigade) is the direction we X-Git-Tag: 2.0.44~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd0031d09f133efc3bfafa57fdb552669543a0bc;p=thirdparty%2Fapache%2Fhttpd.git Actually, the APR_ECONNABORTED (EOS-only brigade) is the direction we are contemplating for the next release, not the prior behavior (which was APR_SUCCESS for c->aborted.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97401 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 264a3d7f4e0..5da9b34deb4 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -644,7 +644,6 @@ static apr_status_t ssl_io_filter_Output(ap_filter_t *f, SSLFilterRec *filter_ctx = f->ctx; if (f->c->aborted) { - /* XXX: This works in 2.0.43, but this will change soon */ apr_brigade_cleanup(bb); return APR_ECONNABORTED; }