BUG: https://bugzilla.samba.org/show_bug.cgi?id=14148
Guenther
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Thu Nov 6 02:42:06 UTC 2025 on atb-devel-224
^samba3.smb2.create.blob
^samba3.smb2.create.open
^samba3.smb2.notify.rec
-^samba3.smb2.notify.security
^samba3.smb2.durable-open.delete_on_close2
^samba3.smb2.durable-v2-open.app-instance
^samba3.smb2.durable-open.reopen1a-lease\(ad_dc\)$
sd_fsp = metadata_fsp(fsp);
status = SMB_VFS_FSET_NT_ACL(sd_fsp, security_info_sent, psd);
-
TALLOC_FREE(psd);
+ if (NT_STATUS_IS_OK(status)) {
+ notify_fname(fsp->conn,
+ NOTIFY_ACTION_MODIFIED,
+ FILE_NOTIFY_CHANGE_SECURITY,
+ fsp->fsp_name,
+ NULL);
+ }
+
return status;
}