From: Wayne Davison Date: Sun, 26 Jun 2011 16:52:40 +0000 (-0700) Subject: Fix #ifdef in unchanged_attrs(). Fixes bug 8268. X-Git-Tag: v3.1.0pre1~102 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01580c794a40bb89c40ba03c2d73d640a28bd292;p=thirdparty%2Frsync.git Fix #ifdef in unchanged_attrs(). Fixes bug 8268. --- diff --git a/generator.c b/generator.c index 84913007..e24f20fb 100644 --- a/generator.c +++ b/generator.c @@ -443,7 +443,7 @@ int unchanged_attrs(const char *fname, struct file_struct *file, stat_x *sxp) if (perms_differ(file, sxp)) return 0; #endif -#ifndef CAN_CHOWN_SYMLINK +#ifdef CAN_CHOWN_SYMLINK if (ownership_differs(file, sxp)) return 0; #endif