From 25ec7fcc34071bb4ec0196c97d3df986a8a3ca54 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Tue, 30 Dec 2003 16:47:16 +0000 Subject: [project @ 2003-12-30 16:47:16 by jmb] Read cookie file from the correct path svn path=/import/netsurf/; revision=472 --- riscos/about.c | 2 +- utils/utils.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/riscos/about.c b/riscos/about.c index d99befffa..44846bc55 100644 --- a/riscos/about.c +++ b/riscos/about.c @@ -266,7 +266,7 @@ void cookie_create(void) { exp[50], name[256], val[256]; unsigned int expiry; - fp = fopen(messages_get("cookiejar"), "r"); + fp = fopen(messages_get("cookiefile"), "r"); if (!fp) { LOG(("Failed to open cookie jar")); return; 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; -- cgit v1.2.3