diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-02-04 15:09:08 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-02-07 16:19:15 -0800 |
commit | 5be5acb736e35a177452bfd9a7dd008c834f52dc (patch) | |
tree | 20a9d736278f30e0cb66d85a6da1f568ddc92c14 /source3/param/loadparm.c | |
parent | f54858505102f4c1b9321edf264752307097d98d (diff) | |
download | samba-5be5acb736e35a177452bfd9a7dd008c834f52dc.tar.gz samba-5be5acb736e35a177452bfd9a7dd008c834f52dc.tar.xz samba-5be5acb736e35a177452bfd9a7dd008c834f52dc.zip |
param: rename lp function and variable from "cli_minprotocol" to "client_min_protocol"
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 6788d66c92..8f6d7756cf 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -822,7 +822,7 @@ static void init_globals(bool reinit_globals) Globals.srv_maxprotocol = PROTOCOL_SMB3_00; Globals.srv_minprotocol = PROTOCOL_LANMAN1; Globals.client_max_protocol = PROTOCOL_NT1; - Globals.cli_minprotocol = PROTOCOL_CORE; + Globals.client_min_protocol = PROTOCOL_CORE; Globals._security = SEC_AUTO; Globals.encrypted_passwords = true; Globals.client_schannel = Auto; |