1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

s3:libsmb: return NT_STATUS_OK for if a request is not the last one in the chain

metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Mon Nov  7 11:38:05 CET 2011 on sn-devel-104
This commit is contained in:
Stefan Metzmacher 2011-11-07 08:55:20 +01:00
parent 597f2ae342
commit 230cd1e276

View File

@ -931,6 +931,12 @@ NTSTATUS cli_smb_recv(struct tevent_req *req,
*/
return status;
}
} else {
/*
* Only the last request in the chain get the returned
* status.
*/
status = NT_STATUS_OK;
}
no_err: