Tweaked a comparison that "checker" was complaining about.
authorWayne Davison <wayned@samba.org>
Tue, 19 Feb 2008 19:52:00 +0000 (11:52 -0800)
committerWayne Davison <wayned@samba.org>
Tue, 19 Feb 2008 19:52:00 +0000 (11:52 -0800)
generator.c

index d192aee..f4f15bb 100644 (file)
@@ -565,7 +565,7 @@ int unchanged_attrs(const char *fname, struct file_struct *file, stat_x *sxp)
        if (preserve_perms && !BITS_EQUAL(sxp->st.st_mode, file->mode, CHMOD_BITS))
                return 0;
 
-       if (preserve_executability && ((sxp->st.st_mode & 0111) != 0) ^ ((file->mode & 0111) != 0))
+       if (preserve_executability && ((sxp->st.st_mode & 0111 ? 1 : 0) ^ (file->mode & 0111 ? 1 : 0)))
                return 0;
 
        if (am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file))