From: Ruediger Pluem Date: Fri, 14 Jan 2011 15:14:16 +0000 (+0000) Subject: * We can only get there if the line is too long and in this case X-Git-Tag: 2.3.11~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5208ff93f44d5d031703a4e7ae61915fbd7ac2d7;p=thirdparty%2Fapache%2Fhttpd.git * We can only get there if the line is too long and in this case we should return the partial line as defined in util_filter.h. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1059037 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index d51475989bc..f8193f5ff05 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -786,10 +786,6 @@ static apr_status_t ssl_io_input_getline(bio_filter_in_ctx_t *inctx, *len = bytes; } - else { - /* Save the part of the line we already got */ - char_buffer_write(&inctx->cbuf, buf, *len); - } return APR_SUCCESS; }