summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_sesssetup.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2012-10-03 12:50:42 -0700
committerJeremy Allison <jra@samba.org>2012-10-03 12:50:42 -0700
commit49a335731a7139a5c66be596f3d544bef72a8556 (patch)
treec0025e17dca5a33de490f0e9eaed2802acca9924 /source3/smbd/smb2_sesssetup.c
parentc2f5b2466bb05939c953341517da6d9df814b27c (diff)
downloadsamba-49a335731a7139a5c66be596f3d544bef72a8556.tar.gz
samba-49a335731a7139a5c66be596f3d544bef72a8556.tar.bz2
samba-49a335731a7139a5c66be596f3d544bef72a8556.zip
Revert "Fix bug #9222 - smbd ignores the "server signing = no" setting for SMB2."
This reverts commit dfd3c31a3f9eea96854b2d22574856368e86b245. As Metze pointed out: From MS-SMB2 section 2.2.4: SMB2_NEGOTIATE_SIGNING_ENABLED When set, indicates that security signatures are enabled on the server. The server MUST set this bit, and the client MUST return STATUS_INVALID_NETWORK_RESPONSE if the flag is missing. I'll submit a documentation bug to fix #9222 that way.
Diffstat (limited to 'source3/smbd/smb2_sesssetup.c')
-rw-r--r--source3/smbd/smb2_sesssetup.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/smbd/smb2_sesssetup.c b/source3/smbd/smb2_sesssetup.c
index 8bdfd49644..2599d2a63d 100644
--- a/source3/smbd/smb2_sesssetup.c
+++ b/source3/smbd/smb2_sesssetup.c
@@ -185,12 +185,6 @@ static NTSTATUS smbd_smb2_auth_generic_return(struct smbXsrv_session *session,
struct smbXsrv_session *x = session;
struct smbXsrv_connection *conn = session->connection;
- if ((lp_server_signing() == SMB_SIGNING_OFF) &&
- (in_security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED)) {
- DEBUG(0,("SMB2 signing required and we have disabled it.\n"));
- return NT_STATUS_ACCESS_DENIED;
- }
-
if ((in_security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) ||
lp_server_signing() == SMB_SIGNING_REQUIRED) {
x->global->signing_required = true;