summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-08-08 22:19:09 +0000
committerJeremy Allison <jra@samba.org>2003-08-08 22:19:09 +0000
commit9df23b22cf45d315c907a832c9e33ad72157c444 (patch)
tree1ef80d68aff5f3a3f3495a1a8dc016a16a905d4d /source3
parent38b3ee6467230955ec94c820f3740eab89534d8c (diff)
downloadsamba-9df23b22cf45d315c907a832c9e33ad72157c444.tar.gz
samba-9df23b22cf45d315c907a832c9e33ad72157c444.tar.bz2
samba-9df23b22cf45d315c907a832c9e33ad72157c444.zip
Turn on client ntlmv2 by default.
Jeremy. (This used to be commit 729b468f7e0e5522dfdede481947826851842483)
Diffstat (limited to 'source3')
-rw-r--r--source3/param/loadparm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 8bd50f35de..e06b535db1 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -1427,7 +1427,8 @@ static void init_globals(void)
Globals.bClientPlaintextAuth = True; /* Do use a plaintext password if is requested by the server */
Globals.bLanmanAuth = True; /* Do use the LanMan hash if it is available */
Globals.bNTLMAuth = True; /* Do use NTLMv1 if it is available (otherwise NTLMv2) */
-
+ Globals.bClientNTLMv2Auth = True; /* Client should use NTLMv2 if available. */
+
Globals.map_to_guest = 0; /* By Default, "Never" */
Globals.min_passwd_length = MINPASSWDLENGTH; /* By Default, 5. */
Globals.oplock_break_wait_time = 0; /* By Default, 0 msecs. */