From: Stefan Metzmacher Date: Wed, 20 May 2009 17:45:28 +0000 (+0200) Subject: s3:smbd: for now indicate raw NTLMSSP in the SMB2 Negotiate response X-Git-Tag: tdb-1.1.5~445 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dafc1e0c8d16e4dcc3929d9e5f78ce60d3371fe8;p=thirdparty%2Fsamba.git s3:smbd: for now indicate raw NTLMSSP in the SMB2 Negotiate response metze --- diff --git a/source3/smbd/smb2_negprot.c b/source3/smbd/smb2_negprot.c index 38dfe6dab3a..b976ea23995 100644 --- a/source3/smbd/smb2_negprot.c +++ b/source3/smbd/smb2_negprot.c @@ -133,6 +133,9 @@ NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req) security_buffer = data_blob_const(negprot_spnego_blob.data + 16, negprot_spnego_blob.length - 16); + /* for now we want raw NTLMSSP */ + security_buffer = data_blob_const(NULL, 0); + outbody = data_blob_talloc(req->out.vector, NULL, 0x40); if (outbody.data == NULL) { return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);