diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/cache.c | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -61,6 +61,7 @@ dillo-fltk2 - Bound "Copy link location". - Bound preliminar find text support. - Added line numbers and enabled wrapping in the "View Source" window. + - Added HTTP-1.1's chunked transfer support! Patches: place +- Fixed a problem with locally-installed dpis. - Added code for optional image loading (nice interface) very advanced! diff --git a/src/cache.c b/src/cache.c index 35bbf41e..88d4cb30 100644 --- a/src/cache.c +++ b/src/cache.c @@ -653,7 +653,6 @@ void a_Cache_process_dbuf(int Op, const char *buf, size_t buf_size, */ if (!(entry->Flags & CA_GotHeader)) { while ((len = Cache_get_header(entry, buf + start, buf_size - start))) { - /* Let's scan, allocate, and set things according to header info */ Cache_parse_header(entry, buf + start, buf_size - start, len); start += len; |