summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2003-05-02 13:40:10 +0000
committerVolker Lendecke <vlendec@samba.org>2003-05-02 13:40:10 +0000
commitbdf912f5a22cddc76116c37badc20e16d458abe6 (patch)
treef9b017f3c029a3d282d0057c10ed891569122b85 /source3
parent269a48fedc03f8351384c7d1eeb89d7fbc4e084e (diff)
downloadsamba-bdf912f5a22cddc76116c37badc20e16d458abe6.tar.gz
samba-bdf912f5a22cddc76116c37badc20e16d458abe6.tar.bz2
samba-bdf912f5a22cddc76116c37badc20e16d458abe6.zip
Now that multi-pdu schannel works and a but in the negotiator has been
fixed I would like to see this tested a bit more. Default the schannel stuff to auto which means 'offer, but do not enforce'. Volker (This used to be commit 7a1b8409bed13d0e7742cbcd3b0fa79b0c671404)
Diffstat (limited to 'source3')
-rw-r--r--source3/param/loadparm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index f86ed281e4..9b9922d8e9 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -1337,8 +1337,8 @@ static void init_globals(void)
Globals.paranoid_server_security = True;
Globals.bEncryptPasswords = True;
Globals.bUpdateEncrypt = False;
- Globals.clientSchannel = False;
- Globals.serverSchannel = False;
+ Globals.clientSchannel = Auto;
+ Globals.serverSchannel = Auto;
Globals.bReadRaw = True;
Globals.bWriteRaw = True;
Globals.bReadPrediction = False;