From 75951946193c874b6db30c1b9c8722264c3ce656 Mon Sep 17 00:00:00 2001 From: Ira Cooper Date: Wed, 19 Sep 2012 18:39:07 +0000 Subject: s3: Compound requests should continue processing. This patch addresses #9173. Signed-off-by: Michael Adam --- source3/smbd/smb2_server.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index fd90b2f81b..803be5e288 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -2683,10 +2683,9 @@ NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req, } /* - * if a request fails, all other remaining - * compounded requests should fail too + * Note: Even if there is an error, continue to process the request. + * per MS-SMB2. */ - req->next_status = NT_STATUS_INVALID_PARAMETER; return smbd_smb2_request_done_ex(req, status, body, info, __location__); } -- cgit