Commit 0607c307 authored by Wayne Davison's avatar Wayne Davison

- One more fix for the 'T' itemized output for a symlink when we're

  the client on the receiving side of a protocol-29 connection.
parent 492ad042
......@@ -27,6 +27,7 @@ extern int dry_run;
extern int do_xfers;
extern int stdout_format_has_i;
extern int logfile_format_has_i;
extern int receiver_symlink_times;
extern int am_root;
extern int am_server;
extern int am_daemon;
......@@ -2080,7 +2081,7 @@ void generate_files(int f_out, const char *local_name)
need_retouch_dir_times = preserve_times > 1;
lull_mod = allowed_lull * 5;
symlink_timeset_failed_flags = ITEM_REPORT_TIME
| (protocol_version >= 30 ? ITEM_REPORT_TIMEFAIL : 0 );
| (receiver_symlink_times ? ITEM_REPORT_TIMEFAIL : 0 );
if (verbose > 2)
rprintf(FINFO, "generator starting pid=%ld\n", (long)getpid());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment