From dafc1e0c8d16e4dcc3929d9e5f78ce60d3371fe8 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 20 May 2009 19:45:28 +0200 Subject: s3:smbd: for now indicate raw NTLMSSP in the SMB2 Negotiate response metze --- source3/smbd/smb2_negprot.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/smbd/smb2_negprot.c b/source3/smbd/smb2_negprot.c index 38dfe6dab3..b976ea2399 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); -- cgit