aboutsummaryrefslogtreecommitdiff
path: root/libnetfs/file-utimes.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-11-15 16:50:50 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-11-15 16:50:50 +0000
commit3ef14dc5033bcb02d48d8d842bac760ea2fd0cf1 (patch)
tree18a4977b3b1cc747e012e8aaa52c21a3e6b1e8ee /libnetfs/file-utimes.c
parent33539520d2e6b3789d2354c651b6e8a12ff21edd (diff)
downloadhurd-3ef14dc5033bcb02d48d8d842bac760ea2fd0cf1.tar.gz
hurd-3ef14dc5033bcb02d48d8d842bac760ea2fd0cf1.tar.bz2
hurd-3ef14dc5033bcb02d48d8d842bac760ea2fd0cf1.zip
entered into RCS
Diffstat (limited to 'libnetfs/file-utimes.c')
-rw-r--r--libnetfs/file-utimes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libnetfs/file-utimes.c b/libnetfs/file-utimes.c
index a3e79946..47a8b883 100644
--- a/libnetfs/file-utimes.c
+++ b/libnetfs/file-utimes.c
@@ -29,10 +29,10 @@ netfs_S_file_utimes (struct protid *user,
struct timespec atime, mtime;
error_t err;
- atime.ts_secs = atimein.seconds;
- atime.ts_nsecs = atimein.microseconds * 1000;
- mtime.ts_secs = mtimein.seconds;
- mtime.ts_nsecs = mtimein.microseconds * 1000;
+ atime.ts_sec = atimein.seconds;
+ atime.ts_nsec = atimein.microseconds * 1000;
+ mtime.ts_sec = mtimein.seconds;
+ mtime.ts_nsec = mtimein.microseconds * 1000;
if (!user)
return EOPNOTSUPP;