From b1720099133811c82a1ab6d9cec835666459638c Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 13 Nov 2007 23:06:58 +0000 Subject: 2007-11-13 Thomas Schwinge * netfs.c (netfs_attempt_utimes): Adapt to ``struct stat'' changes. --- ftpfs/ChangeLog | 4 ++++ ftpfs/netfs.c | 14 +++++--------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'ftpfs') diff --git a/ftpfs/ChangeLog b/ftpfs/ChangeLog index b9866ca9..e6df33b0 100644 --- a/ftpfs/ChangeLog +++ b/ftpfs/ChangeLog @@ -1,3 +1,7 @@ +2007-11-13 Thomas Schwinge + + * netfs.c (netfs_attempt_utimes): Adapt to ``struct stat'' changes. + 2006-07-11 Samuel Thibault * node.c (ftpfs_create_node): Check the result from hurd_ihash_add(). diff --git a/ftpfs/netfs.c b/ftpfs/netfs.c index 0bc6f5be..8922f3ab 100644 --- a/ftpfs/netfs.c +++ b/ftpfs/netfs.c @@ -1,7 +1,9 @@ /* ftpfs interface to libnetfs - Copyright (C) 1997,98,99,2001 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2001, 2007 Free Software Foundation, Inc. + Written by Miles Bader + This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or @@ -75,18 +77,12 @@ netfs_attempt_utimes (struct iouser *cred, struct node *node, if (! err) { if (atime) - { - node->nn_stat.st_atime = atime->tv_sec; - node->nn_stat.st_atime_usec = atime->tv_nsec / 1000; - } + node->nn_stat.st_atim = *atime; else flags |= TOUCH_ATIME; if (mtime) - { - node->nn_stat.st_mtime = mtime->tv_sec; - node->nn_stat.st_mtime_usec = mtime->tv_nsec / 1000; - } + node->nn_stat.st_mtim = *mtime; else flags |= TOUCH_MTIME; -- cgit v1.2.3