From: Wayne Davison Date: Wed, 20 Sep 2006 01:53:32 +0000 (+0000) Subject: Complain if a --remove-s*-files option is set and we can't remove X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/acee1ad8535ae59bda9585b422efe54b68e1f234 Complain if a --remove-s*-files option is set and we can't remove the source file. --- diff --git a/sender.c b/sender.c index 907e6f0b..6fcaa65d 100644 --- a/sender.c +++ b/sender.c @@ -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,