svn commit: samba r3983 - in branches/SAMBA_4_0/source/ntvfs/posix: .

tridge at samba.org tridge at samba.org
Sat Nov 27 00:28:03 GMT 2004


Author: tridge
Date: 2004-11-27 00:28:03 +0000 (Sat, 27 Nov 2004)
New Revision: 3983

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=3983

Log:
posix:fakeoplocks should default to False, not True !

Modified:
   branches/SAMBA_4_0/source/ntvfs/posix/vfs_posix.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/posix/vfs_posix.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/posix/vfs_posix.c	2004-11-27 00:24:36 UTC (rev 3982)
+++ branches/SAMBA_4_0/source/ntvfs/posix/vfs_posix.c	2004-11-27 00:28:03 UTC (rev 3983)
@@ -44,7 +44,7 @@
 	if (lp_strict_locking(snum)) pvfs->flags |= PVFS_FLAG_STRICT_LOCKING;
 	if (lp_ci_filesystem(snum))  pvfs->flags |= PVFS_FLAG_CI_FILESYSTEM;
 
-	if (lp_parm_bool(snum, "posix", "fakeoplocks", True)) {
+	if (lp_parm_bool(snum, "posix", "fakeoplocks", False)) {
 		pvfs->flags |= PVFS_FLAG_FAKE_OPLOCKS;
 	}
 



More information about the samba-cvs mailing list