]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* We can only get there if the line is too long and in this case
authorRuediger Pluem <rpluem@apache.org>
Fri, 14 Jan 2011 15:14:16 +0000 (15:14 +0000)
committerRuediger Pluem <rpluem@apache.org>
Fri, 14 Jan 2011 15:14:16 +0000 (15:14 +0000)
  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

modules/ssl/ssl_engine_io.c

index d51475989bc18499bc0f63d5411e5205ce2ae885..f8193f5ff05b30d4b90f9fc6e570575e8e44f1a8 100644 (file)
@@ -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;
 }