r3983: posix:fakeoplocks should default to False, not True !
authorAndrew Tridgell <tridge@samba.org>
Sat, 27 Nov 2004 00:28:03 +0000 (00:28 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:06:11 +0000 (13:06 -0500)
(This used to be commit 052d91c59f177851b5e0e53c8a033bdd28702f64)

source4/ntvfs/posix/vfs_posix.c

index 95b4c20551fa113545e100e0753e771d94490cec..e340e8cbf699a5c787051dedf7ce01d3ec01d40e 100644 (file)
@@ -44,7 +44,7 @@ static void pvfs_setup_options(struct pvfs_state *pvfs)
        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;
        }