| 2034 | } |
| 2035 | |
| 2036 | static NORETURN void fatal_unsafe_io_error(void) |
| 2037 | { |
| 2038 | /* This (sadly) can only happen when pushing data because |
| 2039 | * the sender does not know about what kind of delete |
| 2040 | * is in effect on the receiving side when pulling. */ |
| 2041 | rprintf(FERROR_XFER, "FATAL I/O ERROR: dying to avoid a --delete-%s issue with a pre-3.0.7 receiver.\n", |
| 2042 | delete_during == 2 ? "delay" : "during"); |
| 2043 | exit_cleanup(RERR_UNSUPPORTED); |
| 2044 | } |
| 2045 | |
| 2046 | static void send1extra(int f, struct file_struct *file, struct file_list *flist) |
| 2047 | { |
no test coverage detected