From 1aa343e89c8ac63b71cff36001cbaa8ed00b11d2 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 21 Oct 2007 21:52:25 +0000 Subject: [PATCH] Make last fix even better. --- hlink.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hlink.c b/hlink.c index 3eac9301..2392ecdb 100644 --- a/hlink.c +++ b/hlink.c @@ -345,9 +345,9 @@ int hard_link_check(struct file_struct *file, int ndx, const char *fname, || prev_st.st_ino != alt_sx.st.st_ino) continue; statret = 1; - if (verbose < 2 || !stdout_format_has_i) { - if (stdout_format_has_i < 2) - itemizing = 0; + if (stdout_format_has_i == 0 + || (verbose < 2 && stdout_format_has_i < 2)) { + itemizing = 0; code = FNONE; if (verbose > 1 && maybe_ATTRS_REPORT) rprintf(FCLIENT, "%s is uptodate\n", fname); -- 2.34.1