From 62b02758809fb91b25d909f83d3e68f8ab75eac7 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 14 May 2001 20:06:28 +0000 Subject: Stupidity by me..... 777 != 0777 ARGGGHHHHHHHHHH. (Sorry). Jeremy. (This used to be commit 4306eff6f77b95eeaaa4f8375356a81ad3497c67) --- source3/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 2aa24b8d10..8094f17547 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -456,7 +456,7 @@ static service sDefault = { 0, /* iSecurity_force_mode */ 0755, /* iDir_mask */ 0000, /* iDir_force_mode */ - 777, /* iDir_Security_mask */ + 0777, /* iDir_Security_mask */ 0, /* iDir_Security_force_mode */ 0, /* iMaxConnections */ CASE_LOWER, /* iDefaultCase */ -- cgit