diff -r ece7ffdcd26b -r 6e536698eac2 components/rsync/patches/15730984.patch --- a/components/rsync/patches/15730984.patch Wed Jul 27 01:12:27 2016 -0700 +++ b/components/rsync/patches/15730984.patch Wed Jul 27 11:41:47 2016 -0700 @@ -30,23 +30,16 @@ extern int am_server; extern int am_daemon; -@@ -134,7 +135,7 @@ - if (DEBUG_GTE(EXIT, 2)) { - rprintf(FINFO, - "[%s] _exit_cleanup(code=%d, file=%s, line=%d): entered\n", -- who_am_i(), code, file, line); -+ who_am_i(), code, basename((char *)file), line); - } - - /* FALLTHROUGH */ -@@ -233,7 +234,7 @@ +--- Originals/cleanup.c 2016-07-13 15:37:38.279157151 -0700 ++++ rsync-3.1.2/cleanup.c 2016-07-13 15:42:51.107529619 -0700 +@@ -235,7 +235,7 @@ rprintf(FINFO, "[%s] _exit_cleanup(code=%d, file=%s, line=%d): " - "about to call exit(%d)\n", -- who_am_i(), first_code, exit_file, exit_line, exit_code); -+ who_am_i(), first_code, basename((char *)exit_file), exit_line, exit_code); + "about to call exit(%d)%s\n", +- who_am_i(), first_code, exit_file, exit_line, exit_code, ++ who_am_i(), first_code, basename((char*)exit_file), exit_line, exit_code, + dry_run ? " (DRY RUN)" : ""); } - /* FALLTHROUGH */ --- rsync-3.1.0/t_stub.c.orig Tue Jun 11 18:06:53 2013 +++ rsync-3.1.0/t_stub.c Mon Mar 17 14:58:24 2014