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 <wa...@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.

_______________________________________________
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs

Reply via email to