summaryrefslogtreecommitdiff
path: root/isofs
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-03-25 20:29:33 +0000
committerThomas Schwinge <tschwinge@gnu.org>2007-03-25 20:29:33 +0000
commit3b2580ed612cd4b30918a27b3af9f73a9273fad1 (patch)
treeefd620398deabe483307f34b2e5c2c7af43678e9 /isofs
parent2aba92caaec0fc028d7d0970160bfa900d29da08 (diff)
2007-03-25 Thomas Schwinge <tschwinge@gnu.org>
* isofs/inode.c (read_disknode): Correctly convert from nanoseconds to microseconds.
Diffstat (limited to 'isofs')
-rw-r--r--isofs/ChangeLog5
-rw-r--r--isofs/inode.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/isofs/ChangeLog b/isofs/ChangeLog
index 797d38f2..bc8c3a73 100644
--- a/isofs/ChangeLog
+++ b/isofs/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-25 Thomas Schwinge <tschwinge@gnu.org>
+
+ * isofs/inode.c (read_disknode): Correctly convert from nanoseconds to
+ microseconds.
+
2005-02-23 Alfred M. Szmidt <ams@gnu.org>
* Makefile (iso9660fs.static): New target.
diff --git a/isofs/inode.c b/isofs/inode.c
index c086c626..091b75ba 100644
--- a/isofs/inode.c
+++ b/isofs/inode.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1997,98,2002 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 2002, 2007 Free Software Foundation, Inc.
Written by Thomas Bushnell, n/BSG.
This file is part of the GNU Hurd.
@@ -433,7 +433,7 @@ read_disknode (struct node *np, struct dirrect *dr,
isodate_915 (dr->date, &ts);
st->st_ctime = st->st_mtime = st->st_atime = ts.tv_sec;
st->st_ctime_usec = st->st_mtime_usec = st->st_atime_usec
- = ts.tv_nsec * 1000;
+ = ts.tv_nsec / 1000;
}
/* Override what we have better info for */
@@ -442,19 +442,19 @@ read_disknode (struct node *np, struct dirrect *dr,
if (rl->tfflags & TF_CREATION)
{
st->st_ctime = rl->ctime.tv_sec;
- st->st_ctime_usec = rl->ctime.tv_nsec * 1000;
+ st->st_ctime_usec = rl->ctime.tv_nsec / 1000;
}
if (rl->tfflags & TF_ACCESS)
{
st->st_atime = rl->atime.tv_sec;
- st->st_atime_usec = rl->atime.tv_nsec * 1000;
+ st->st_atime_usec = rl->atime.tv_nsec / 1000;
}
if (rl->tfflags & TF_MODIFY)
{
st->st_mtime = rl->mtime.tv_sec;
- st->st_mtime_usec = rl->mtime.tv_nsec * 1000;
+ st->st_mtime_usec = rl->mtime.tv_nsec / 1000;
}
}