[SCM] The rsync repository. - branch master updated

Rsync CVS commit messages rsync-cvs at lists.samba.org
Sat Jun 4 14:04:26 MDT 2011


The branch, master has been updated
       via  4591bb2 Only skip deletions on IOERR_GENERAL.  Fixes bug 7809.
      from  810dc9f Don't force \(em in the manpages.  Fixes bug 7941.

;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 4591bb2f6651cf8efd707b6b815a3d62a1c9c418
Author: Wayne Davison <wayned at samba.org>
Date:   Sat Jun 4 13:04:46 2011 -0700

    Only skip deletions on IOERR_GENERAL.  Fixes bug 7809.

-----------------------------------------------------------------------

Summary of changes:
 generator.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/generator.c b/generator.c
index cd7abda..b8d930e 100644
--- a/generator.c
+++ b/generator.c
@@ -288,7 +288,7 @@ static void delete_in_dir(char *fbuf, struct file_struct *file, dev_t *fs_dev)
 	if (allowed_lull)
 		maybe_send_keepalive(time(NULL), MSK_ALLOW_FLUSH);
 
-	if (io_error && !ignore_errors) {
+	if (io_error & IOERR_GENERAL && !ignore_errors) {
 		if (already_warned)
 			return;
 		rprintf(FINFO,


-- 
The rsync repository.


More information about the rsync-cvs mailing list