summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2017-12-07 13:22:22 +0100
committerRalph Boehme <slow@samba.org>2018-01-10 01:01:24 +0100
commit0341e83d40dc42fbb1f1e467626418a9e4dedf40 (patch)
tree015f2e1c686b72490ef5110d77033aff220b5df1 /source3/param
parent3a7d931127a8c739208ae6ca8124cd18fec6b7bb (diff)
downloadsamba-0341e83d40dc42fbb1f1e467626418a9e4dedf40.tar.gz
docs-xml: deprecate "server schannel" and change the default to "yes"
No client should use the old protocol without DCERPC level integrity/privacy, but Maybe there're some lagacy OEM file servers, which require this. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Ralph Boehme <slow@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 9f79f132def..582c8756ffa 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -654,7 +654,7 @@ static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals)
Globals.client_schannel = true;
Globals.winbind_sealed_pipes = true;
Globals.require_strong_key = true;
- Globals.server_schannel = Auto;
+ Globals.server_schannel = true;
Globals.read_raw = true;
Globals.write_raw = true;
Globals.null_passwords = false;