diff options
author | Volker Lendecke <vlendec@samba.org> | 2003-05-02 13:40:10 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2003-05-02 13:40:10 +0000 |
commit | bdf912f5a22cddc76116c37badc20e16d458abe6 (patch) | |
tree | f9b017f3c029a3d282d0057c10ed891569122b85 /source3 | |
parent | 269a48fedc03f8351384c7d1eeb89d7fbc4e084e (diff) | |
download | samba-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.c | 4 |
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; |