[SCM] The rsync repository. - branch master updated

Rsync CVS commit messages rsync-cvs at lists.samba.org
Wed Jul 8 21:21:07 UTC 2020


The branch, master has been updated
       via  a6da3c67 Must read the nsec val even w/o CAN_SET_NSEC.
      from  ab110fc8 Warning fixes & impossible-failure improvements

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


- Log -----------------------------------------------------------------
commit a6da3c67f80e8e4a91998ca74292a4701e552894
Author: Wayne Davison <wayne at opencoder.net>
Date:   Wed Jul 8 14:17:01 2020 -0700

    Must read the nsec val even w/o CAN_SET_NSEC.

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

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


Changeset truncated at 500 lines:

diff --git a/flist.c b/flist.c
index c98e5759..39f942b0 100644
--- a/flist.c
+++ b/flist.c
@@ -807,8 +807,10 @@ static struct file_struct *recv_file_entry(int f, struct file_list *flist, int x
 		} else
 			modtime = read_int(f);
 	}
-#ifdef CAN_SET_NSEC
 	if (xflags & XMIT_MOD_NSEC)
+#ifndef CAN_SET_NSEC
+		(void)read_varint(f);
+#else
 		modtime_nsec = read_varint(f);
 	else
 		modtime_nsec = 0;


-- 
The rsync repository.



More information about the rsync-cvs mailing list