diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-11-02 19:08:54 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-11-03 18:33:34 +0100 |
commit | 05d3a6f2192f85ee8b7db046f54f918810ebd84c (patch) | |
tree | 349a0f5e9128246d8da695288ff61eaa88426400 | |
parent | caa134672c053f56360ef602b7f8b9d66b216ad3 (diff) | |
download | samba-05d3a6f2192f85ee8b7db046f54f918810ebd84c.tar.gz samba-05d3a6f2192f85ee8b7db046f54f918810ebd84c.tar.bz2 samba-05d3a6f2192f85ee8b7db046f54f918810ebd84c.zip |
s3:param: change default of "* signing" to "default"
This should not change the bahavior.
metze
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Thu Nov 3 18:33:34 CET 2011 on sn-devel-104
-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 88c855cd8c..36e35e8d44 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -4980,8 +4980,8 @@ static void init_globals(bool reinit_globals) Globals.bUseSpnego = true; Globals.bClientUseSpnego = true; - Globals.client_signing = SMB_SIGNING_IF_REQUIRED; - Globals.server_signing = SMB_SIGNING_OFF; + Globals.client_signing = SMB_SIGNING_DEFAULT; + Globals.server_signing = SMB_SIGNING_DEFAULT; Globals.bDeferSharingViolations = true; string_set(&Globals.smb_ports, SMB_PORTS); |