From 2b4d51f2e9bc1acd302ebea6213b2d43861fd8cc Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 31 Oct 2007 05:48:25 +0000 Subject: [PATCH] Set ndx_start to 1 only for an inc-recursive transfer. --- flist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flist.c b/flist.c index 733344cc..19c427dc 100644 --- a/flist.c +++ b/flist.c @@ -2323,7 +2323,7 @@ struct file_list *flist_new(int flags, char *msg) if (!flist->file_pool) out_of_memory(msg); - flist->ndx_start = 1; + flist->ndx_start = inc_recurse ? 1 : 0; first_flist = cur_flist = flist->prev = flist; } else { -- 2.34.1