From 408d98f84a0339b4b871985686ab36f96019c076 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 14 Jun 2007 03:15:52 +0000 Subject: [PATCH] * gzip.c (copy_stat): Adjust to gnulib's renaming of futimens to gl_futimens. --- ChangeLog | 5 +++++ gzip.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e7aed7f..0b6d2c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-13 Paul Eggert + + * gzip.c (copy_stat): Adjust to gnulib's renaming of futimens to + gl_futimens. + 2007-06-04 Paul Eggert * gzip.c (get_method): Fix typo: "a a" -> "a" in diagnostic. Reported diff --git a/gzip.c b/gzip.c index 9c4a6d5..554dd23 100644 --- a/gzip.c +++ b/gzip.c @@ -1637,7 +1637,7 @@ local void copy_stat(ifstat) } } - if (futimens (ofd, ofname, timespec) != 0) + if (gl_futimens (ofd, ofname, timespec) != 0) { int e = errno; WARN ((stderr, "%s: ", program_name)); -- 2.47.2