mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-01-27 08:19:18 -05:00
Decided that the '<' and '>' output in the %i format were
the opposite of what they should be.
This commit is contained in:
2
log.c
2
log.c
@@ -442,7 +442,7 @@ static void log_formatted(enum logcode code, char *format, char *op,
|
||||
n[0] = iflags & ITEM_LOCAL_CHANGE
|
||||
? iflags & ITEM_XNAME_FOLLOWS ? 'h' : 'c'
|
||||
: !(iflags & ITEM_TRANSFER) ? '.'
|
||||
: *op == 's' ? '>' : '<';
|
||||
: *op == 's' ? '<' : '>';
|
||||
n[1] = S_ISDIR(file->mode) ? 'd'
|
||||
: IS_DEVICE(file->mode) ? 'D'
|
||||
: S_ISLNK(file->mode) ? 'L' : 'f';
|
||||
|
||||
6
rsync.yo
6
rsync.yo
@@ -1059,10 +1059,10 @@ modified.
|
||||
The update types that replace the bf(U) are as follows:
|
||||
|
||||
quote(itemize(
|
||||
it() A bf(<) means that a file is being transferred to the local host
|
||||
(received).
|
||||
it() A bf(>) means that a file is being transferred to the remote host
|
||||
it() A bf(<) means that a file is being transferred to the remote host
|
||||
(sent).
|
||||
it() A bf(>) means that a file is being transferred to the local host
|
||||
(received).
|
||||
it() A bf(c) means that a local change/creation is occuring for the item
|
||||
(such as the creation of a directory or the changing of a symlink, etc.).
|
||||
it() A bf(h) means that the item is a hard-link to another item (requires
|
||||
|
||||
Reference in New Issue
Block a user