Have do_delete_pass() immediately return if list_only is set.
authorWayne Davison <wayned@samba.org>
Fri, 13 May 2005 23:00:20 +0000 (23:00 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 13 May 2005 23:00:20 +0000 (23:00 +0000)
generator.c

index 3a7dda3..deefff4 100644 (file)
@@ -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++) {