]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs: add fsp_flags.posix_append
authorRalph Boehme <slow@samba.org>
Fri, 22 Nov 2024 18:36:39 +0000 (19:36 +0100)
committerJeremy Allison <jra@samba.org>
Tue, 7 Jan 2025 22:04:32 +0000 (22:04 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/include/vfs.h

index ae1c4f955606785251b952e86aed1e51ca169b58..d579f8d21fa8bd0cfca48c33d2141703109f0a3f 100644 (file)
  * 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;