[SCM] The rsync repository. - branch master updated

Rsync CVS commit messages rsync-cvs at lists.samba.org
Sun Oct 8 15:51:21 UTC 2017


The branch, master has been updated
       via  136c6c7 Fix double-fuzzy + link-dest issue. Fixes bug 11866.
      from  3fb1634 Fix possible buffer overrun for some large name_len values. Fixes bug 12568.

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


- Log -----------------------------------------------------------------
commit 136c6c77343c935a39c64044f3a21ee352ee9a11
Author: Wayne Davison <wayned at samba.org>
Date:   Sun Oct 8 08:39:35 2017 -0700

    Fix double-fuzzy + link-dest issue.
    Fixes bug 11866.

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

Summary of changes:
 generator.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/generator.c b/generator.c
index fe5fece..af2e290 100644
--- a/generator.c
+++ b/generator.c
@@ -1755,7 +1755,7 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
 
 	if (fnamecmp_type <= FNAMECMP_BASIS_DIR_HIGH)
 		;
-	else if (fnamecmp_type == FNAMECMP_FUZZY)
+	else if (fnamecmp_type >= FNAMECMP_FUZZY)
 		;
 	else if (unchanged_file(fnamecmp, file, &sx.st)) {
 		if (partialptr) {


-- 
The rsync repository.



More information about the rsync-cvs mailing list