removed debug info
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.11-ssl-fixes@1323 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.12
parent
f40d75f98d
commit
85775e6a5e
|
@ -69,8 +69,6 @@ int network_write_chunkqueue_openssl(server *srv, connection *con, SSL *ssl, chu
|
|||
(con->file_finished)) {
|
||||
/* merge the last chunk into the previous chunk */
|
||||
|
||||
fprintf(stderr, "%s.%d: trying to merge final chunk\r\n", __FILE__, __LINE__);
|
||||
|
||||
for(c = cq->first; c && c->next && c->next->next; c = c->next);
|
||||
|
||||
if (c &&
|
||||
|
@ -79,8 +77,6 @@ int network_write_chunkqueue_openssl(server *srv, connection *con, SSL *ssl, chu
|
|||
c->next->type == MEM_CHUNK &&
|
||||
c->next->mem->used == sizeof("0\r\n\r\n") &&
|
||||
0 == strcmp(c->next->mem->ptr, "0\r\n\r\n")) {
|
||||
fprintf(stderr, "%s.%d: trying to merge final chunk, merged\r\n", __FILE__, __LINE__);
|
||||
|
||||
buffer_append_string_buffer(c->mem, c->next->mem);
|
||||
|
||||
c->next->mem->used = 0;
|
||||
|
|
Loading…
Reference in New Issue