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.0.9pre2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=121082fa9b375666e06a8fc6e476aaecb307079f;p=thirdparty%2Frsync.git Fix #ifdef in unchanged_attrs(). Fixes bug 8268. --- diff --git a/generator.c b/generator.c index d7e1ba85..089672e6 100644 --- a/generator.c +++ b/generator.c @@ -630,7 +630,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