diff options
author | Jeremy Allison <jra@samba.org> | 1998-11-17 23:44:52 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-11-17 23:44:52 +0000 |
commit | 92a7a86f0e0255e3812dd35bebfcd653091514ae (patch) | |
tree | d85d190f27aa065db2168c0c14d730d3229d5ea1 /source/include | |
parent | 79c259f05cf7cd4f2d3d1bb92fff3bde7acd8a50 (diff) | |
download | samba-92a7a86f0e0255e3812dd35bebfcd653091514ae.tar.gz samba-92a7a86f0e0255e3812dd35bebfcd653091514ae.tar.xz samba-92a7a86f0e0255e3812dd35bebfcd653091514ae.zip |
Fixed NT modify timestamp issue.
If a client does a modify timestamp on an open file (which will
do no good at all on UNIX :-) then keep the modify request pending
in the files_struct and apply it at close instead.
Jeremy.
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/smb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/include/smb.h b/source/include/smb.h index 63aa7c098d2..47dde8c31f7 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -623,6 +623,7 @@ typedef struct files_struct write_bmpx_struct *wbmpx_ptr; struct timeval open_time; int share_mode; + time_t pending_modtime; BOOL open; BOOL can_lock; BOOL can_read; |