From 23e43fceeb918374e99005c7d1553ded436d6bab Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 22 May 1998 12:07:23 +0000 Subject: [PATCH] fix shadowed variable --- rsync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsync.c b/rsync.c index 82efef54..6644f141 100644 --- a/rsync.c +++ b/rsync.c @@ -940,7 +940,7 @@ int recv_files(int f_in,struct file_list *flist,char *local_name,int f_gen) /* now we need to fix any directory permissions that were modified during the transfer */ for (i = 0; i < flist->count; i++) { - struct file_struct *file = flist->files[i]; + file = flist->files[i]; if (!file->basename || !S_ISDIR(file->mode)) continue; recv_generator(f_name(file),flist,i,-1); } -- 2.34.1