]> git.cworth.org Git - gzip/blobdiff - lib/utimens.c
Imported Debian patch 1.3.12-3.1
[gzip] / lib / utimens.c
index 71bc510d86bb57db59203877a55fdd25d45ab694..e5e98f7dabd2c9eb5bad599c554187853b12b970 100644 (file)
@@ -75,7 +75,7 @@ struct utimbuf
    Return 0 on success, -1 (setting errno) on failure.  */
 
 int
-futimens (int fd ATTRIBUTE_UNUSED,
+gz_futimens (int fd ATTRIBUTE_UNUSED,
          char const *file, struct timespec const timespec[2])
 {
   /* Some Linux-based NFS clients are buggy, and mishandle time stamps
@@ -185,5 +185,5 @@ futimens (int fd ATTRIBUTE_UNUSED,
 int
 utimens (char const *file, struct timespec const timespec[2])
 {
-  return futimens (-1, file, timespec);
+  return gz_futimens (-1, file, timespec);
 }