diff options
author | Wayne Davison <wayned@samba.org> | 2006-06-01 08:04:40 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-06-01 08:04:40 +0000 |
commit | 1925c3448cc67ad17ac66ef809b275a3a3034c02 (patch) | |
tree | 13da3946c532aedf76652c04bbc552017d2e1e1d /rsync.c | |
parent | 19b8587654616db0b1a90de7d596ccafd882df19 (diff) | |
download | rsync-1925c3448cc67ad17ac66ef809b275a3a3034c02.tar.gz rsync-1925c3448cc67ad17ac66ef809b275a3a3034c02.tar.bz2 rsync-1925c3448cc67ad17ac66ef809b275a3a3034c02.zip |
- Got rid of the FNAME logcode enum.
- We no longer output " is uptodate" messages to the log file.
Diffstat (limited to 'rsync.c')
-rw-r--r-- | rsync.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; } |