| 557 | } |
| 558 | |
| 559 | static void no_batched_update(int ndx, BOOL is_redo) |
| 560 | { |
| 561 | struct file_list *flist = flist_for_ndx(ndx, "no_batched_update"); |
| 562 | struct file_struct *file; |
| 563 | if (ndx < flist->ndx_start) |
| 564 | exit_cleanup(RERR_PROTOCOL); |
| 565 | file = flist->files[ndx - flist->ndx_start]; |
| 566 | |
| 567 | rprintf(FERROR_XFER, "(No batched update for%s \"%s\")\n", |
| 568 | is_redo ? " resend of" : "", f_name(file, NULL)); |
| 569 | |
| 570 | if (inc_recurse && !dry_run) |
| 571 | send_msg_int(MSG_NO_SEND, ndx); |
| 572 | } |
| 573 | |
| 574 | static int we_want_redo(int desired_ndx) |
| 575 | { |
no test coverage detected