summaryrefslogtreecommitdiff
path: root/src/cache.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-11-21 02:31:24 +0100
committerjcid <devnull@localhost>2007-11-21 02:31:24 +0100
commitd57413d5a92a875aca6327fb227207a2eba95e81 (patch)
tree2b123f97e11d7c29402e25c0d06e7873893a370b /src/cache.c
parente3dc26c04e15024ffb1b130c626bb4d5e8c7bdff (diff)
- Switched dillo to push a URL with fragment (anchor) into the stack.
- Re-enabled scrolling with Up/Down arrows.
Diffstat (limited to 'src/cache.c')
-rw-r--r--src/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cache.c b/src/cache.c
index 18347099..4f7f074c 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -478,7 +478,7 @@ static void Cache_parse_header(CacheEntry_t *entry,
entry->Flags |= CA_TempRedirect; /* 302 Temporary Redirect */
location_str = Cache_parse_field(header, "Location");
- entry->Location = a_Url_new(location_str, URL_STR_(entry->Url), 0, 0, 0);
+ entry->Location = a_Url_new(location_str,URL_STR_(entry->Url),0,0,0);
dFree(location_str);
} else if (strncmp(header + 9, "404", 3) == 0) {