From 36e2ea60688439bc4a217e2b715dae5543276d2d Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 13 Oct 2006 07:48:35 +0000 Subject: [PATCH] Use new FNONE value when setting/comparing enum logcode vars. --- hlink.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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; } -- 2.34.1