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
commitc7acae904301cfc6a281d63f4e7d3cc6f4fff938 (patch)
treed5e606fe39238fecb5b209c2569bec53cc127638 /source3/param
parent1f91cdc8bd2a50498a9e0293a75d4e41a3618f64 (diff)
downloadsamba-c7acae904301cfc6a281d63f4e7d3cc6f4fff938.tar.gz
docs-xml: deprecate "client schannel" and change the default to "yes"
This is already the default, because "require strong key = yes" is the default. 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 f8f76a66ebc..9f79f132def 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -651,7 +651,7 @@ static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals)
Globals._client_ipc_min_protocol = PROTOCOL_DEFAULT;
Globals._security = SEC_AUTO;
Globals.encrypt_passwords = true;
- Globals.client_schannel = Auto;
+ Globals.client_schannel = true;
Globals.winbind_sealed_pipes = true;
Globals.require_strong_key = true;
Globals.server_schannel = Auto;