From a6da3c67f80e8e4a91998ca74292a4701e552894 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 8 Jul 2020 14:17:01 -0700 Subject: [PATCH] Must read the nsec val even w/o CAN_SET_NSEC. --- flist.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.47.2