From: Wayne Davison Date: Fri, 13 Oct 2006 07:48:35 +0000 (+0000) Subject: Use new FNONE value when setting/comparing enum logcode vars. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/36e2ea60688439bc4a217e2b715dae5543276d2d Use new FNONE value when setting/comparing enum logcode vars. --- diff --git a/hlink.c b/hlink.c index 814e4a42..77d0dc03 100644 --- a/hlink.c +++ b/hlink.c @@ -216,8 +216,10 @@ int hard_link_check(struct file_struct *file, int ndx, char *fname, continue; statret = 1; st = &st3; - if (verbose < 2 || !stdout_format_has_i) - itemizing = code = 0; + if (verbose < 2 || !stdout_format_has_i) { + itemizing = 0; + code = FNONE; + } break; } if (!unchanged_file(cmpbuf, file, &st3)) @@ -266,7 +268,7 @@ int hard_link_one(struct file_struct *file, int ndx, char *fname, ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS, 0, terse ? "" : toname); } - if (code && verbose && !terse) + if (code != FNONE && verbose && !terse) rprintf(code, "%s => %s\n", fname, toname); return 0; }