From e29747ab899f58795f1da815c3464dbafc38b99d Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Mon, 3 Oct 2011 15:37:26 +0000 Subject: [PATCH] Set a more sane default filemode. (Marc H. Thoben ) git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@602 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- dgl-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dgl-common.c b/dgl-common.c index 6c93e74..2019bfc 100644 --- a/dgl-common.c +++ b/dgl-common.c @@ -65,7 +65,7 @@ int curses_resize = 0; int selected_game = 0; int return_from_submenu = 0; -mode_t default_fmode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; +mode_t default_fmode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; struct dg_globalconfig globalconfig;