A minor tweak for the dry_run logic.
authorWayne Davison <wayned@samba.org>
Fri, 11 Feb 2005 20:26:08 +0000 (20:26 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 11 Feb 2005 20:26:08 +0000 (20:26 +0000)
generator.c

index 8f3177c..ad28e83 100644 (file)
@@ -525,12 +525,12 @@ prepare_to_open:
                statret = 0;
        }
 
-       if (dry_run || whole_file > 0) {
+       if (dry_run || read_batch)
+               goto notify_others;
+       if (whole_file > 0) {
                statret = -1;
                goto notify_others;
        }
-       if (read_batch)
-               goto notify_others;
 
        /* open the file */
        fd = do_open(fnamecmp, O_RDONLY, 0);