X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d3d07a5e860f1cde0e234ec7a1aff7111a2c514f..f28bf7f401ee58704f7b77465faf3b7af3f5ee8c:/syscall.c diff --git a/syscall.c b/syscall.c index f2f5bc23..d4ff3f91 100644 --- a/syscall.c +++ b/syscall.c @@ -167,9 +167,9 @@ int do_chmod(const char *path, mode_t mode) code = 1; #endif } else - code = chmod(path, mode & CHMOD_BITS); + code = chmod(path, mode & CHMOD_BITS); /* DISCOURAGED FUNCTION */ if (code != 0 && (preserve_perms || preserve_executability)) - return code; + return code; return 0; } #endif