Fixed the itemizing of perms with -E.
[rsync/rsync.git] / syscall.c
index f2f5bc2..c2180de 100644 (file)
--- a/syscall.c
+++ b/syscall.c
@@ -169,7 +169,7 @@ int do_chmod(const char *path, mode_t mode)
        } else
                code = chmod(path, mode & CHMOD_BITS);
        if (code != 0 && (preserve_perms || preserve_executability))
-           return code;
+               return code;
        return 0;
 }
 #endif