mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-08 20:12:01 +03:00
[project @ 2003-12-30 16:47:16 by jmb]
Read cookie file from the correct path svn path=/import/netsurf/; revision=472
This commit is contained in:
parent
76e2269df3
commit
25ec7fcc34
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user