summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2017-06-26 10:00:53 +0200
committerStefan Metzmacher <metze@samba.org>2017-06-27 16:57:48 +0200
commit1199907cbe2f003a7df6f56e6cf3878d0732344d (patch)
treeb3a8a0a5543697748466945ef6c85a3b649f2be0 /source3/param
parent006539e885d8febe564078c3c7240a7f3ec6f1cc (diff)
downloadsamba-1199907cbe2f003a7df6f56e6cf3878d0732344d.tar.gz
param: change the effective default for "client max protocol" to the latest supported protocol
Currently it's SMB3_11. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@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 91fa85ea7b0..8f0cf5e6e03 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -4543,7 +4543,7 @@ int lp_client_max_protocol(void)
{
int client_max_protocol = lp__client_max_protocol();
if (client_max_protocol == PROTOCOL_DEFAULT) {
- return PROTOCOL_NT1;
+ return PROTOCOL_LATEST;
}
return client_max_protocol;
}