]> granicus.if.org Git - apache/commitdiff
fixed wrong 3rd parameter passed to apr_brigade_split_line().
authorGuenter Knauf <fuankg@apache.org>
Sun, 27 Sep 2009 18:53:33 +0000 (18:53 +0000)
committerGuenter Knauf <fuankg@apache.org>
Sun, 27 Sep 2009 18:53:33 +0000 (18:53 +0000)
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

index ae9d36af9856b0a3c93056a99a16a2eedbdbe3fe..bf2e7ed653b7790482c30ac624436d83a324076d 100644 (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,