summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/testparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index c7cbab91b8..e4c627d954 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -61,7 +61,7 @@ cannot be set in the smb.conf file. nmbd will abort with this setting.\n");
if (!directory_exist(lp_lockdir(), &st)) {
printf("ERROR: lock directory %s does not exist\n",
lp_lockdir());
- } else if ((st.st_mode & 0666) != 0644) {
+ } else if ((st.st_mode & 0777) != 0755) {
printf("WARNING: lock directory %s should have permissions 0644 for browsing to work\n",
lp_lockdir());
}