From: Wayne Davison Date: Sun, 21 Oct 2007 16:50:31 +0000 (+0000) Subject: Avoid dropping a hard-linked itemized output with -ii. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5ed353a881ed9c360933c8ba8e4ca368ba8ab058 Avoid dropping a hard-linked itemized output with -ii. --- diff --git a/hlink.c b/hlink.c index 6dde2cc0..3eac9301 100644 --- a/hlink.c +++ b/hlink.c @@ -346,7 +346,8 @@ int hard_link_check(struct file_struct *file, int ndx, const char *fname, continue; statret = 1; if (verbose < 2 || !stdout_format_has_i) { - itemizing = 0; + if (stdout_format_has_i < 2) + itemizing = 0; code = FNONE; if (verbose > 1 && maybe_ATTRS_REPORT) rprintf(FCLIENT, "%s is uptodate\n", fname);