Commit acee1ad8 authored by Wayne Davison's avatar Wayne Davison

Complain if a --remove-s*-files option is set and we can't remove

the source file.
parent 8f4ae68c
......@@ -134,8 +134,13 @@ void successful_send(int ndx)
} else
offset = 0;
f_name(file, fname + offset);
if (remove_source_files && do_unlink(fname) == 0 && verbose > 1)
rprintf(FINFO, "sender removed %s\n", fname + offset);
if (remove_source_files) {
if (do_unlink(fname) == 0) {
if (verbose > 1)
rprintf(FINFO, "sender removed %s\n", fname + offset);
} else
rsyserr(FERROR, errno, "sender failed to remove %s", fname + offset);
}
}
static void write_ndx_and_attrs(int f_out, int ndx, int iflags,
......
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