summaryrefslogtreecommitdiff
path: root/remake.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-04-03 05:58:41 +0000
committerPaul Smith <psmith@gnu.org>2000-04-03 05:58:41 +0000
commitf3a974bf32a3e5d3d898a040fedcbb478d1afd85 (patch)
treeb31ca7fc34c7bee7858ae3d2fad822f1d3a13d8e /remake.c
parentc67266ceacbde449be807d23c6d8df465c763a1e (diff)
downloadgunmake-f3a974bf32a3e5d3d898a040fedcbb478d1afd85.tar.gz
* Fix bug handling archive members: convert timestamp to nsec properly
on those systems that support it.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/remake.c b/remake.c
index a2b2127..ad0d3e5 100644
--- a/remake.c
+++ b/remake.c
@@ -1097,7 +1097,7 @@ f_mtime (file, search)
/* The archive doesn't exist, so it's members don't exist either. */
return (FILE_TIMESTAMP) -1;
- mtime = ar_member_date (file->hname);
+ mtime = FILE_TIMESTAMP_FROM_S_AND_NS (ar_member_date (file->hname), 0);
}
else
#endif