X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7210dbfd2ab424d5beee7dd94975006e1fa35ed7..0b52f94da727c4881b58c1cd6f2cf2a824e02b30:/util.c diff --git a/util.c b/util.c index 477f5bca..5dd6ead4 100644 --- a/util.c +++ b/util.c @@ -147,8 +147,8 @@ int set_modtime(const char *fname, time_t modtime, mode_t mode) t[1].tv_usec = 0; # ifdef HAVE_LUTIMES if (S_ISLNK(mode)) { - if (lutimes(fname, t) < 0 && errno != ENOSYS) - return -1; + if (lutimes(fname, t) < 0) + return errno == ENOSYS ? 1 : -1; return 0; } # endif