diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-30 12:32:56 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-06-05 04:27:36 +0200 |
commit | 9db04c481d981ee0ab285e0e34f32c49a7e84641 (patch) | |
tree | 1d97727b894618a9e54d7c3f6a088dd0a5bc25b2 /source3/param/loadparm.c | |
parent | 3a1358121ab0d0d950252a0ec770a08bdda90809 (diff) | |
download | samba-9db04c481d981ee0ab285e0e34f32c49a7e84641.tar.gz samba-9db04c481d981ee0ab285e0e34f32c49a7e84641.tar.xz samba-9db04c481d981ee0ab285e0e34f32c49a7e84641.zip |
s3-smbd: Remove support for protocols before LANMAN1
This falls out of the removal of security=share, because we now require that
a session setup has been performed before (essentially) all other operations.
Andrew Bartlett
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 1c78b5831c..f9d14cdac1 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -4781,7 +4781,7 @@ static void init_globals(bool reinit_globals) Globals.max_open_files = max_open_files(); Globals.open_files_db_hash_size = SMB_OPEN_DATABASE_TDB_HASH_SIZE; Globals.srv_maxprotocol = PROTOCOL_SMB2_02; - Globals.srv_minprotocol = PROTOCOL_CORE; + Globals.srv_minprotocol = PROTOCOL_LANMAN1; Globals.security = SEC_USER; Globals.paranoid_server_security = true; Globals.bEncryptPasswords = true; |