From: Doug MacEachern Date: Fri, 24 Aug 2001 17:17:35 +0000 (+0000) Subject: churn_output should return the value of ap_pass_brigade X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa70d3c5b5dbf679bcbe49a378a281ad90371c0e;p=thirdparty%2Fapache%2Fhttpd.git churn_output should return the value of ap_pass_brigade git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90640 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_io.c b/ssl_engine_io.c index d6c0d34702c..c29917b8d11 100644 --- a/ssl_engine_io.c +++ b/ssl_engine_io.c @@ -181,8 +181,7 @@ static apr_status_t churn_output(SSLFilterRec *ctx) bucket = apr_bucket_flush_create(); APR_BRIGADE_INSERT_TAIL(bb, bucket); - /* XXX: check for errors */ - ap_pass_brigade(f->next, bb); + return ap_pass_brigade(f->next, bb); } return APR_SUCCESS;