summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-11-28 16:06:18 +0100
committerjcid <devnull@localhost>2007-11-28 16:06:18 +0100
commit31ebba417042000df5f466ecd0880996c71407ec (patch)
tree7cd79f80b68b64510f9fea144d606cf054fbbd58
parentba08ee0b4e87d71aae5c96aff1bd89e5c1dd6827 (diff)
.
-rw-r--r--ChangeLog1
-rw-r--r--src/cache.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e430b8d..ca56b435 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;