summaryrefslogtreecommitdiffstats
path: root/source/utils
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-08-21 07:25:57 +0000
committerAndrew Tridgell <tridge@samba.org>1998-08-21 07:25:57 +0000
commit930a4292e95947d20696b7ce08bbb936442fe327 (patch)
tree5a51f0794231a00655b5910b1e3e30b666bd4855 /source/utils
parent6e00de7a1d3d5f9fa9bcc40db119fcb8602165c9 (diff)
downloadsamba-930a4292e95947d20696b7ce08bbb936442fe327.tar.gz
samba-930a4292e95947d20696b7ce08bbb936442fe327.tar.xz
samba-930a4292e95947d20696b7ce08bbb936442fe327.zip
silly me.
perms on lock dir should be 755 not 644.
Diffstat (limited to 'source/utils')
-rw-r--r--source/utils/testparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/testparm.c b/source/utils/testparm.c
index c7cbab91b87..e4c627d954f 100644
--- a/source/utils/testparm.c
+++ b/source/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());
}