From 69e2b4ee3a5f5e4b5792714697766a7ee4d18029 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 19 Jan 2008 11:20:17 -0800 Subject: [PATCH] Fixed the combination of --dry-run and --only-write-batch. --- options.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/options.c b/options.c index 11249c07..5a24dd2f 100644 --- a/options.c +++ b/options.c @@ -1306,7 +1306,8 @@ int parse_arguments(int *argc_p, const char ***argv_p, int frommain) batch_name = NULL; } else if (dry_run) write_batch = 0; - } + } else if (write_batch < 0 && dry_run) + write_batch = 0; if (read_batch && files_from) { snprintf(err_buf, sizeof err_buf, "--read-batch cannot be used with --files-from\n"); -- 2.34.1