From 53c84862ce0de17f6d63d26cfa20008c57dc7074 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 2 Feb 2009 03:04:47 +0000 Subject: [ftpfs] 2009-02-02 Samuel Thibault * dir.c (ftpfs_refresh_node): Use st_mtim.tv_sec members instead of st_mtime. Also compare st_mtim.tv_nsec members. [libdiskfs] 2009-02-02 Samuel Thibault * file-utimes.c (diskfs_S_file_utimes): Use st_atim.tv_sec/ st_mtim.tv_sec members instead of st_atime/st_mtime. Also set st_atim.tv_nsec/st_mtim.tv_nsec members. [libftpconn] 2009-02-02 Samuel Thibault * unix.c (parse_dir_entry): Use st_mtim.tv_sec instead of st_mtime. Set st_atim.tv_nsec, st_ctim.tv_nsec and st_mtim.tv_nsec to 0. [login] 2009-02-02 Samuel Thibault * utmp.c (S_login_get_idle_time): Use st_atim.tv_sec and st_atim.tv_nsec members instead of st_atime and st_atime_usec. [tmpfs] 2009-02-02 Samuel Thibault * tmpfs.h (struct disknode): Make atime, mtime and ctime members struct timespec instead of time_t. * tmpfs.c (main): Copy st_atim/st_mtim/st_ctim members from st to diskfs_root_node->dn_stat instead of st_atime/st_mtime/st_ctime. * node.c (diskfs_node_norefs): Copy st_atime/st_mtime/st_ctime members from np->dn_stat to atime/mtime/ctime members of np->dn (diskfs_cached_lookup): Conversely. --- libdiskfs/ChangeLog | 6 ++++++ libdiskfs/file-utimes.c | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'libdiskfs') diff --git a/libdiskfs/ChangeLog b/libdiskfs/ChangeLog index e28dd799..7c98c793 100644 --- a/libdiskfs/ChangeLog +++ b/libdiskfs/ChangeLog @@ -1,3 +1,9 @@ +2009-02-02 Samuel Thibault + + * file-utimes.c (diskfs_S_file_utimes): Use st_atim.tv_sec/ + st_mtim.tv_sec members instead of st_atime/st_mtime. Also set + st_atim.tv_nsec/st_mtim.tv_nsec members. + 2008-08-21 Samuel Thibault * dir-lookup.c (diskfs_S_dir_lookup): Initialize NEWPI and NEWPO to diff --git a/libdiskfs/file-utimes.c b/libdiskfs/file-utimes.c index b87aa18e..39fac504 100644 --- a/libdiskfs/file-utimes.c +++ b/libdiskfs/file-utimes.c @@ -32,7 +32,8 @@ diskfs_S_file_utimes (struct protid *cred, np->dn_set_atime = 1; else { - np->dn_stat.st_atime = atime.seconds; + np->dn_stat.st_atim.tv_sec = atime.seconds; + np->dn_stat.st_atim.tv_nsec = atime.microseconds * 1000; np->dn_set_atime = 0; } @@ -40,7 +41,8 @@ diskfs_S_file_utimes (struct protid *cred, np->dn_set_mtime = 1; else { - np->dn_stat.st_mtime = mtime.seconds; + np->dn_stat.st_mtim.tv_sec = mtime.seconds; + np->dn_stat.st_mtim.tv_nsec = mtime.microseconds * 1000; np->dn_set_mtime = 0; } -- cgit v1.2.3