diff options
Diffstat (limited to 'ftpfs')
-rw-r--r-- | ftpfs/netfs.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ftpfs/netfs.c b/ftpfs/netfs.c index cf5d9079..b0c80db1 100644 --- a/ftpfs/netfs.c +++ b/ftpfs/netfs.c @@ -77,14 +77,10 @@ netfs_attempt_utimes (struct iouser *cred, struct node *node, if (! err) { if (atime) - node->nn_stat.st_atim = *atime; - else - flags |= TOUCH_ATIME; + node->nn_stat.st_atim = *atime; if (mtime) - node->nn_stat.st_mtim = *mtime; - else - flags |= TOUCH_MTIME; + node->nn_stat.st_mtim = *mtime; fshelp_touch (&node->nn_stat, flags, ftpfs_maptime); } |