(set_stat): Rewrite to avoid bug in Forte

Developer 7 C 5.4 Patch 111708-09 (2004-02-19).
This commit is contained in:
Paul Eggert
2005-11-04 21:25:47 +00:00
parent 65a7536d1f
commit c641a16cba

View File

@@ -262,7 +262,10 @@ set_stat (char const *file_name,
/* FIXME: incremental_option should set ctime too, but how? */
struct timespec ts[2];
ts[0] = incremental_option ? st->atime : start_time;
if (incremental_option)
ts[0] = st->atime;
else
ts[0] = start_time;
ts[1] = st->mtime;
if (utimens (file_name, ts) != 0)