X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=lib%2Futimens.c;h=e5e98f7dabd2c9eb5bad599c554187853b12b970;hb=HEAD;hp=71bc510d86bb57db59203877a55fdd25d45ab694;hpb=013796abf4c6be0bd130f541c0ece156156239c3;p=gzip diff --git a/lib/utimens.c b/lib/utimens.c index 71bc510..e5e98f7 100644 --- a/lib/utimens.c +++ b/lib/utimens.c @@ -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); }