1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

vfs_worm: add FILE_WRITE_EA to write access mask

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
This commit is contained in:
Björn Jacke 2024-01-07 14:42:20 +01:00 committed by Volker Lendecke
parent 24227f7ecc
commit abe1e959bf

View File

@ -29,7 +29,7 @@ struct worm_config_data {
static const uint32_t write_access_flags = FILE_WRITE_DATA | FILE_APPEND_DATA |
FILE_WRITE_ATTRIBUTES |
DELETE_ACCESS | WRITE_DAC_ACCESS |
WRITE_OWNER_ACCESS;
WRITE_OWNER_ACCESS | FILE_WRITE_EA;
static int vfs_worm_connect(struct vfs_handle_struct *handle,
const char *service, const char *user)