X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/19b8587654616db0b1a90de7d596ccafd882df19..1925c3448cc67ad17ac66ef809b275a3a3034c02:/rsync.c diff --git a/rsync.c b/rsync.c index fec27c1c..dcf984ce 100644 --- a/rsync.c +++ b/rsync.c @@ -218,11 +218,10 @@ int set_file_attrs(char *fname, struct file_struct *file, STRUCT_STAT *st, #endif if (verbose > 1 && flags & ATTRS_REPORT) { - enum logcode code = logfile_format_has_i || dry_run ? FCLIENT : FINFO; if (updated) - rprintf(code, "%s\n", fname); + rprintf(FCLIENT, "%s\n", fname); else - rprintf(code, "%s is uptodate\n", fname); + rprintf(FCLIENT, "%s is uptodate\n", fname); } return updated; }