From 15ddfe3fefe2592208f0157ac1c6f36266754818 Mon Sep 17 00:00:00 2001 From: Paulo Vitor Magacho Date: Wed, 29 Dec 2021 20:59:16 -0300 Subject: [PATCH] Fix missing raw status for rename operation Signed-off-by: Paulo Vitor Magacho --- source3/libsmb/cli_smb2_fnum.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/libsmb/cli_smb2_fnum.c b/source3/libsmb/cli_smb2_fnum.c index f70639e41bd..a84447ef071 100644 --- a/source3/libsmb/cli_smb2_fnum.c +++ b/source3/libsmb/cli_smb2_fnum.c @@ -3376,6 +3376,7 @@ NTSTATUS cli_smb2_rename_recv(struct tevent_req *req) if (!tevent_req_is_nterror(req, &status)) { status = state->rename_status; } + state->cli->raw_status = state; tevent_req_received(req); return status; } -- 2.27.0.windows.1