summaryrefslogtreecommitdiffstats
path: root/surf.c
diff options
context:
space:
mode:
authorGravatar Enno Boland (Gottox) 2009-06-08 09:39:00 +0200
committerGravatar Enno Boland (Gottox) 2009-06-08 09:39:00 +0200
commit92e8fd101c7b74cd9139bcdd061ab4a58f19a193 (patch)
treebfbce7e1e3fe035bdf4beb81be880fd14a9d88c5 /surf.c
parentuse tabs not spaces! (diff)
adding surf-directory.
Diffstat (limited to '')
-rw-r--r--surf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/surf.c b/surf.c
index caf5391..97981b7 100644
--- a/surf.c
+++ b/surf.c
@@ -472,7 +472,8 @@ int main(int argc, char *argv[]) {
/* cookie persistance */
s = webkit_get_default_session();
home = g_get_home_dir();
- filename = g_build_filename(home, ".surf-cookies", NULL);
+ filename = g_build_filename(home, ".surf", "cookies", NULL);
+ g_mkdir(g_path_get_dirname(filename), 0755);
cookiejar = soup_cookie_jar_text_new(filename, FALSE);
soup_session_add_feature(s, SOUP_SESSION_FEATURE(cookiejar));