diff options
author | jcid <devnull@localhost> | 2007-11-28 16:06:18 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-28 16:06:18 +0100 |
commit | 31ebba417042000df5f466ecd0880996c71407ec (patch) | |
tree | 7cd79f80b68b64510f9fea144d606cf054fbbd58 | |
parent | ba08ee0b4e87d71aae5c96aff1bd89e5c1dd6827 (diff) |
.
-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; |