From 7c5476baadb44b34566341ef3cfc9bb32ca81c68 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Thu, 17 Dec 2020 13:41:20 +0100 Subject: [PATCH] smbd: mark fsp as valid FSA fsp after Durable Handle reconnect succeeded Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/smbd/durable.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/smbd/durable.c b/source3/smbd/durable.c index 8cd5e4241fa..0580ae4adbf 100644 --- a/source3/smbd/durable.c +++ b/source3/smbd/durable.c @@ -930,6 +930,8 @@ NTSTATUS vfs_default_durable_reconnect(struct connection_struct *conn, TALLOC_FREE(lck); + fsp->fsp_flags.is_fsa = true; + *result = fsp; *new_cookie = new_cookie_blob; -- 2.47.2