X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ff0e15804f3f7f730ac1c7c79bcd0f34ca39fa4c..e0fd68f5ce8d3ef6add132cc9d42a03fa8888fef:/syscall.c diff --git a/syscall.c b/syscall.c index c2180de3..d4ff3f91 100644 --- a/syscall.c +++ b/syscall.c @@ -167,7 +167,7 @@ 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 0;