From: Wayne Davison Date: Sat, 10 Jan 2004 21:10:04 +0000 (+0000) Subject: Use the new LIVE_FLAGS define to fix a potential flag problem. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/a09f6f55da452122cae567cd916ed47a24f790ad Use the new LIVE_FLAGS define to fix a potential flag problem. --- diff --git a/batch.c b/batch.c index 3f344ad2..753eae99 100644 --- a/batch.c +++ b/batch.c @@ -47,7 +47,7 @@ void write_batch_flist_info(int flist_count, struct file_struct **files) reset_file_entry_vars(); for (i = 0; i < flist_count; i++) - send_file_entry(files[i], f, files[i]->flags & FLAG_DELETE); + send_file_entry(files[i], f, files[i]->flags & LIVE_FLAGS); send_file_entry(NULL, f, 0); protocol_version = save_pv;