diff options
author | Wayne Davison <wayned@samba.org> | 2006-02-09 01:17:01 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-02-09 01:17:01 +0000 |
commit | 503f163446bf4ba8a8cd0f521a24e5ef1e6c872e (patch) | |
tree | c93323e9029ce7bfcf3e4f1e6046ced8c87bb645 /log.c | |
parent | f17e769e28284086a874e7a3c39091ca9f09fc77 (diff) | |
download | rsync-503f163446bf4ba8a8cd0f521a24e5ef1e6c872e.tar.gz rsync-503f163446bf4ba8a8cd0f521a24e5ef1e6c872e.tar.bz2 rsync-503f163446bf4ba8a8cd0f521a24e5ef1e6c872e.zip |
Decided against shortening the output of --itemize-changes.
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -608,7 +608,8 @@ static void log_formatted(enum logcode code, char *format, char *op, n[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p'; n[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o'; n[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g'; - n[8] = '\0'; + n[8] = '.'; + n[9] = '\0'; if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) { char ch = iflags & ITEM_IS_NEW ? '+' : '?'; |