Displaying 2 results from an estimated 2 matches for "fwarning".
Did you mean:
warning
2008 Aug 20
0
Problem with exact moment of issuing transfer log entry for a [recv] action
...@@ -719,6 +717,7 @@
if (remove_source_files || inc_recurse
|| (preserve_hard_links && F_IS_HLINKED(file)))
send_msg_int(MSG_SUCCESS, ndx);
+ log_item(log_code, file, &initial_stats, iflags, NULL);
break;
case 0: {
enum logcode msgtype = redoing ? FERROR_XFER : FWARNING;
2023 Jul 03
0
[PATCH] Add option --log-after to log after moving file into place
...n's early exec input
--list-only list the files instead of copying them
diff --git a/rsync.h b/rsync.h
index d3709fe0..92d22f61 100644
--- a/rsync.h
+++ b/rsync.h
@@ -253,8 +253,9 @@ enum logcode {
FERROR_XFER=1, FINFO=2, /* sent over socket for any protocol */
FERROR=3, FWARNING=4, /* sent over socket for protocols >= 30 */
FERROR_SOCKET=5, FLOG=6, /* only sent via receiver -> generator pipe */
+ FCLIENT=7, /* never transmitted (e.g. server converts to FINFO) */
FERROR_UTF8=8, /* only sent via receiver -> generator pipe */
- FCLIENT=7 /* never...