From: Ralph Boehme Date: Fri, 22 Nov 2024 18:36:39 +0000 (+0100) Subject: vfs: add fsp_flags.posix_append X-Git-Tag: tdb-1.4.13~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38d1bbf69aa8957fd8ad7c0963d66b6ead71e579;p=thirdparty%2Fsamba.git vfs: add fsp_flags.posix_append Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/include/vfs.h b/source3/include/vfs.h index ae1c4f95560..d579f8d21fa 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -387,6 +387,7 @@ * Version 50 - Remove FSP_POSIX_FLAGS_PATHNAMES, remove FSP_POSIX_FLAGS_RENAME * and convert struct files_struct.posix_flags to * struct files_struct.fsp_flags.posix_open + * Version 50 - Add struct files_struct.fsp_flags.posix_append */ #define SMB_VFS_INTERFACE_VERSION 50 @@ -462,6 +463,7 @@ typedef struct files_struct { bool encryption_required : 1; bool fstat_before_close : 1; bool posix_open : 1; + bool posix_append : 1; } fsp_flags; struct tevent_timer *update_write_time_event;