summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2021-09-14 09:54:22 -0700
committerJeremy Allison <jra@samba.org>2021-09-14 23:14:36 +0000
commit54fe40836ba1813166ab9f060255139dd37d697a (patch)
tree1e801dfd695d492a62ac1707a5e7a894ecda4836 /source3/param
parentc2d6284a033da3984cc13a85c862489c78fb7739 (diff)
downloadsamba-54fe40836ba1813166ab9f060255139dd37d697a.tar.gz
loadparm: Set default of "kernel share modes" to "no"
selftest: Remove knownfail for smb2.lock.replay_smb3_specification_durable With the changed default for "kernel share modes", this test can now acquire durable handles and succeed. Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index b003e54c038..6c9830563c3 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -246,7 +246,7 @@ static const struct loadparm_service _sDefault =
.map_readonly = MAP_READONLY_NO,
.directory_name_cache_size = 100,
.server_smb_encrypt = SMB_ENCRYPTION_DEFAULT,
- .kernel_share_modes = true,
+ .kernel_share_modes = false,
.durable_handles = true,
.check_parent_directory_delete_on_close = false,
.param_opt = NULL,