summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2003-12-30 16:47:16 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2003-12-30 16:47:16 +0000
commit25ec7fcc34071bb4ec0196c97d3df986a8a3ca54 (patch)
tree09882555992b1bc5b4bf9ec0e88a1092d1bd8a4c /utils
parent76e2269df3b83483a93d457c069408cb10615b69 (diff)
downloadnetsurf-25ec7fcc34071bb4ec0196c97d3df986a8a3ca54.tar.gz
netsurf-25ec7fcc34071bb4ec0196c97d3df986a8a3ca54.tar.bz2
[project @ 2003-12-30 16:47:16 by jmb]
Read cookie file from the correct path svn path=/import/netsurf/; revision=472
Diffstat (limited to 'utils')
-rw-r--r--utils/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/utils.c b/utils/utils.c
index 8cd6e1f68..149324f29 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -334,7 +334,7 @@ void clean_cookiejar(void) {
exp[50], name[256], val[256];
long int expiry;
- fp = fopen(messages_get("cookiejar"), "r");
+ fp = fopen(messages_get("cookiefile"), "r");
if (!fp) {
LOG(("Failed to open cookie jar"));
return;