From 6d8cb05732abce0535a30dad04abb4d86ab0abc2 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 10 Feb 2012 19:41:02 +0000 Subject: Fix Debian bug #659376: .netsurf must not be world readable svn path=/trunk/netsurf/; revision=13438 --- gtk/gui.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gtk') diff --git a/gtk/gui.c b/gtk/gui.c index 5d58958e7..7aa25d043 100644 --- a/gtk/gui.c +++ b/gtk/gui.c @@ -472,10 +472,12 @@ static void nsgtk_check_homedir(void) snprintf(buf, PATH_MAX, "%s/.netsurf", hdir); if (access(buf, F_OK) != 0) { LOG(("You don't have a ~/.netsurf - creating one for you.")); - if (mkdir(buf, 0777) == -1) { + if (mkdir(buf, 0700) == -1) { LOG(("Unable to create %s", buf)); die("NetSurf requires ~/.netsurf to exist, but it cannot be created.\n"); } + } else { + chmod(buf, 0700); } } -- cgit v1.2.3