1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

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
This commit is contained in:
Guenter Knauf
2009-09-27 18:53:33 +00:00
parent 33b45f931a
commit 158ed01bff

View File

@@ -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,