From 05ac17f0e1091c1b4123b41433e6d21743197d37 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Mon, 11 May 2009 16:38:04 +0200 Subject: [PATCH] allow "others" to read created dumm files/folders --- src/dumm/guest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dumm/guest.c b/src/dumm/guest.c index 54bc453e7..969a2a99d 100644 --- a/src/dumm/guest.c +++ b/src/dumm/guest.c @@ -36,8 +36,8 @@ #include "mconsole.h" #include "cowfs.h" -#define PERME (S_IRWXU | S_IRWXG) -#define PERM (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP) +#define PERME (S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) +#define PERM (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH) #define MASTER_DIR "master" #define DIFF_DIR "diff"