[SCM] The rsync repository. - branch master updated

Rsync CVS commit messages rsync-cvs at lists.samba.org
Sun Apr 17 18:08:33 UTC 2016


The branch, master has been updated
       via  0f7db20 Only output about new backup dirs when requested. Fixes bug 11812.
      from  4e25abc Fix/improve the sort functions. Fixes bug 11704.

https://git.samba.org/?p=rsync.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 0f7db203fb4125e9ec8851bb0ff8878258fc4a05
Author: Wayne Davison <wayned at samba.org>
Date:   Sun Apr 17 11:06:58 2016 -0700

    Only output about new backup dirs when requested.
    Fixes bug 11812.

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

Summary of changes:
 main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/main.c b/main.c
index 4613c96..e2b93c6 100644
--- a/main.c
+++ b/main.c
@@ -865,7 +865,8 @@ static int do_recv(int f_in, int f_out, char *local_name)
 				rprintf(FERROR, "Failed to stat %s: %s\n", backup_dir_buf, strerror(errno));
 				exit_cleanup(RERR_FILEIO);
 			}
-			rprintf(FINFO, "(new) backup_dir is %s\n", backup_dir_buf);
+			if (INFO_GTE(BACKUP, 1))
+				rprintf(FINFO, "(new) backup_dir is %s\n", backup_dir_buf);
 		} else if (INFO_GTE(BACKUP, 1))
 			rprintf(FINFO, "backup_dir is %s\n", backup_dir_buf);
 		if (backup_dir_len > 1)


-- 
The rsync repository.



More information about the rsync-cvs mailing list