From 158ed01bff3b0213e3fee6c41f482f0402207c33 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Sun, 27 Sep 2009 18:53:33 +0000 Subject: [PATCH] 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 --- modules/ssl/ssl_engine_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.50.1