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 | 490439d77a7fe3daadce1f30f17f03896c6739aa (patch) | |
tree | 3f183b3cc8b3c0a6e8c5b9fdb90c7798f1f954ef /source3/include | |
parent | 157fe90d2ea172faa0b2f4e5fe5bfb8ce44a6520 (diff) | |
download | samba-490439d77a7fe3daadce1f30f17f03896c6739aa.tar.gz samba-490439d77a7fe3daadce1f30f17f03896c6739aa.tar.bz2 samba-490439d77a7fe3daadce1f30f17f03896c6739aa.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.
(This used to be commit 92a7a86f0e0255e3812dd35bebfcd653091514ae)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 63aa7c098d..47dde8c31f 100644 --- a/source3/include/smb.h +++ b/source3/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; |