}
}
- if (futimens (ofd, ofname, timespec) != 0)
+ if (futimens_gz (ofd, ofname, timespec) != 0)
{
int e = errno;
WARN ((stderr, "%s: ", program_name));
Return 0 on success, -1 (setting errno) on failure. */
int
-futimens (int fd ATTRIBUTE_UNUSED,
+futimens_gz (int fd ATTRIBUTE_UNUSED,
char const *file, struct timespec const timespec[2])
{
/* Some Linux-based NFS clients are buggy, and mishandle time stamps
int
utimens (char const *file, struct timespec const timespec[2])
{
- return futimens (-1, file, timespec);
+ return futimens_gz (-1, file, timespec);
}
#include <time.h>
-int futimens (int, char const *, struct timespec const [2]);
+int futimens_gz (int, char const *, struct timespec const [2]);
int utimens (char const *, struct timespec const [2]);