applied fix from dev list and debian reviewers

This commit is contained in:
anselm@garbe.us
2012-02-11 10:40:32 +01:00
parent 3da24a7481
commit a0e269b6bd
3 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -127,7 +127,7 @@ buildpath(const char *path) {
apath = g_strconcat(g_get_home_dir(), "/", path, NULL);
if((p = strrchr(apath, '/'))) {
*p = '\0';
g_mkdir_with_parents(apath, 0755);
g_mkdir_with_parents(apath, 0700);
*p = '/';
}
/* creating file (gives error when apath ends with "/") */
@@ -867,7 +867,7 @@ main(int argc, char *argv[]) {
showxid = TRUE;
break;
case 'v':
die("surf-"VERSION", © 2009 surf engineers, see LICENSE for details\n");
die("surf-"VERSION", ©2009-2012 surf engineers, see LICENSE for details\n");
default:
usage();
}