X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e35ad79b1bb0239b50d08f80853acaf11dc13fac..100200d0d2c959a1bf215b1b42db94039bbbcb98:/syscall.c diff --git a/syscall.c b/syscall.c index 39554e95..d4ff3f91 100644 --- a/syscall.c +++ b/syscall.c @@ -4,7 +4,7 @@ * * Copyright (C) 1998 Andrew Tridgell * Copyright (C) 2002 Martin Pool - * Copyright (C) 2003-2007 Wayne Davison + * Copyright (C) 2003-2008 Wayne Davison * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -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