39 lines
1.1 KiB
Diff
39 lines
1.1 KiB
Diff
|
--- gzip.c
|
||
|
+++ gzip.c
|
||
|
@@ -1639,7 +1639,7 @@
|
||
|
}
|
||
|
}
|
||
|
|
||
|
- if (futimens (ofd, ofname, timespec) != 0)
|
||
|
+ if (gl_futimens (ofd, ofname, timespec) != 0)
|
||
|
{
|
||
|
int e = errno;
|
||
|
WARN ((stderr, "%s: ", program_name));
|
||
|
--- lib/utimens.c
|
||
|
+++ lib/utimens.c
|
||
|
@@ -75,8 +75,8 @@
|
||
|
Return 0 on success, -1 (setting errno) on failure. */
|
||
|
|
||
|
int
|
||
|
-futimens (int fd ATTRIBUTE_UNUSED,
|
||
|
- char const *file, struct timespec const timespec[2])
|
||
|
+gl_futimens (int fd ATTRIBUTE_UNUSED,
|
||
|
+ char const *file, struct timespec const timespec[2])
|
||
|
{
|
||
|
/* Some Linux-based NFS clients are buggy, and mishandle time stamps
|
||
|
of files in NFS file systems in some cases. We have no
|
||
|
@@ -185,5 +185,5 @@
|
||
|
int
|
||
|
utimens (char const *file, struct timespec const timespec[2])
|
||
|
{
|
||
|
- return futimens (-1, file, timespec);
|
||
|
+ return gl_futimens (-1, file, timespec);
|
||
|
}
|
||
|
--- lib/utimens.h
|
||
|
+++ lib/utimens.h
|
||
|
@@ -1,3 +1,3 @@
|
||
|
#include <time.h>
|
||
|
-int futimens (int, char const *, struct timespec const [2]);
|
||
|
+int gl_futimens (int, char const *, struct timespec const [2]);
|
||
|
int utimens (char const *, struct timespec const [2]);
|