From: Guenter Knauf Date: Sun, 27 Sep 2009 18:53:33 +0000 (+0000) Subject: fixed wrong 3rd parameter passed to apr_brigade_split_line(). X-Git-Tag: 2.3.3~256 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=158ed01bff3b0213e3fee6c41f482f0402207c33;p=apache fixed wrong 3rd parameter passed to apr_brigade_split_line(). Problem showed up with Sun Studio; mentioned by Jie Gao on the list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@819373 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index ae9d36af98..bf2e7ed653 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -1632,7 +1632,7 @@ static apr_status_t ssl_io_filter_buffer(ap_filter_t *f, } else { /* Split a line into the passed-in brigade. */ - rv = apr_brigade_split_line(bb, ctx->bb, mode, bytes); + rv = apr_brigade_split_line(bb, ctx->bb, block, bytes); if (rv) { ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, f->c,