diff options
author | Ira Cooper <ira@samba.org> | 2012-09-19 18:39:07 +0000 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-09-22 10:18:56 +0200 |
commit | 75951946193c874b6db30c1b9c8722264c3ce656 (patch) | |
tree | 21964b3b745908a1cbe7558395a038f65a996b40 | |
parent | fe2071cd3bae655b9aa7908059f0e19520e2db90 (diff) | |
download | samba-75951946193c874b6db30c1b9c8722264c3ce656.tar.gz samba-75951946193c874b6db30c1b9c8722264c3ce656.tar.bz2 samba-75951946193c874b6db30c1b9c8722264c3ce656.zip |
s3: Compound requests should continue processing.
This patch addresses #9173.
Signed-off-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | source3/smbd/smb2_server.c | 5 |
1 files changed, 2 insertions, 3 deletions
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__); } |