From: Wayne Davison Date: Sun, 21 Oct 2007 21:52:25 +0000 (+0000) Subject: Make last fix even better. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/1aa343e89c8ac63b71cff36001cbaa8ed00b11d2 Make last fix even better. --- 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);