- Got rid of the FNAME logcode enum.
[rsync/rsync.git] / rsync.c
diff --git a/rsync.c b/rsync.c
index fec27c1..dcf984c 100644 (file)
--- 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;
 }