diff options
author | Jeremy Allison <jra@samba.org> | 2004-11-20 02:48:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:23 -0500 |
commit | 5a83636948cd82c2bf3c5399eed6a9205b6adfac (patch) | |
tree | 858fb51049045d2c471565d917e4bdcc5c0ac482 | |
parent | 9b734922b5fb9e0508cc4077074b46701c793e78 (diff) | |
download | samba-5a83636948cd82c2bf3c5399eed6a9205b6adfac.tar.gz samba-5a83636948cd82c2bf3c5399eed6a9205b6adfac.tar.bz2 samba-5a83636948cd82c2bf3c5399eed6a9205b6adfac.zip |
r3889: Only set mtime from pending_modtime if it's not already zero...
Jeremy.
(This used to be commit 984c3506351ba97f74813d678424858508c4197a)
-rw-r--r-- | source3/smbd/trans2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index b4140eeafe..633325638a 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -3304,7 +3304,7 @@ static int call_trans2setfilepathinfo(connection_struct *conn, char *inbuf, char SSVAL(params,0,0); - if (fsp) { + if (fsp && fsp->pending_modtime) { /* the pending modtime overrides the current modtime */ sbuf.st_mtime = fsp->pending_modtime; } |