From 60cc7709da5317fca021d9fe4e46a943e528acc8 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 14 Sep 2010 13:17:37 -0700 Subject: paxutils: use POSIX interface for file time-setting This is a minor cleanup to use the POSIX.1-2008 interface for setting file time stamps to nanosecond resolution, rather than the pre-2008 gnulib interface. On older hosts, it falls back on gnulib's implementation of the POSIX interface. * configure.ac: Don't check for utimes; it's not used. * gnulib.modules: Add utimensat. * tests/genfile.c: Don't include utimens.h. (exec_checkpoint): Use POSIX utimensat function, not utimens. --- tests/genfile.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/genfile.c b/tests/genfile.c index 19cbdcb..998e6a6 100644 --- a/tests/genfile.c +++ b/tests/genfile.c @@ -29,7 +29,6 @@ #include #include #include -#include #include #include #include @@ -656,7 +655,7 @@ exec_checkpoint (struct action *p) struct timespec ts[2]; ts[0] = ts[1] = p->ts; - if (utimens (p->name, ts) != 0) + if (utimensat (AT_FDCWD, p->name, ts, 0) != 0) { error (0, errno, _("cannot set time on `%s'"), p->name); break; -- cgit v1.2.1