You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2011/01/14 16:14:16 UTC

svn commit: r1059037 - /httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

Author: rpluem
Date: Fri Jan 14 15:14:16 2011
New Revision: 1059037

URL: http://svn.apache.org/viewvc?rev=1059037&view=rev
Log:
* 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.

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_io.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_io.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_io.c?rev=1059037&r1=1059036&r2=1059037&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_io.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_io.c Fri Jan 14 15:14:16 2011
@@ -786,10 +786,6 @@ static apr_status_t ssl_io_input_getline
 
         *len = bytes;
     }
-    else {
-        /* Save the part of the line we already got */
-        char_buffer_write(&inctx->cbuf, buf, *len);
-    }
 
     return APR_SUCCESS;
 }