From b225b089b8e7ec1fbed235ba743a2cbd2b540c30 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 13 May 2005 23:00:20 +0000 Subject: [PATCH] Have do_delete_pass() immediately return if list_only is set. --- generator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/generator.c b/generator.c index 3a7dda3b..deefff4e 100644 --- a/generator.c +++ b/generator.c @@ -282,7 +282,8 @@ static void do_delete_pass(struct file_list *flist) char fbuf[MAXPATHLEN]; int j; - if (dry_run > 1) /* destination doesn't exist yet */ + if (dry_run > 1 /* destination doesn't exist yet */ + || list_only) return; for (j = 0; j < flist->count; j++) { -- 2.34.1