From: Wayne Davison Date: Sun, 4 Jan 2004 18:43:18 +0000 (+0000) Subject: Changed recv_generator() to take a "struct file_struct *" instead of X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/dfd5ba6ab7a4ec0ebc916269788355fda86cf4ce?hp=dfd5ba6ab7a4ec0ebc916269788355fda86cf4ce Changed recv_generator() to take a "struct file_struct *" instead of a "struct file_list *", which allows us to call it with a copy of the current file_struct entry that we've modified. This is better than modifying the entry directly because the latter causes the shared memory between the generator and the receiver to slowly vanish as the in-memory changes happen. ---