From 84df0a68702dfd3ff687f199df4e479a892640d7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 22 Oct 2008 16:59:08 +0200 Subject: Don't push the data out to the client in reply_sesssetup_blob() Sending the data at this level breaks the assumption at higher levels that req->outbuf == NULL means this request is deferred. It also breaks potential chaining (Kerberos session setup and tcon X in one request) --- source3/smbd/sesssetup.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 9c9d0a97bc..02a66b37c3 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -136,10 +136,6 @@ static void reply_sesssetup_blob(struct smb_request *req, reply_nterror(req, NT_STATUS_NO_MEMORY); } } - - show_msg((char *)req->outbuf); - srv_send_smb(smbd_server_fd(),(char *)req->outbuf,req->encrypted); - TALLOC_FREE(req->outbuf); } /**************************************************************************** -- cgit