From 41961db0bd8e54d3f62c7e706125e01be357a261 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 16 Feb 2005 08:10:38 +0000 Subject: [PATCH] Ensure that -i is set consistent with the batch's data. --- batch.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/batch.c b/batch.c index 68d284d6..28f9a509 100644 --- a/batch.c +++ b/batch.c @@ -8,6 +8,7 @@ #include "rsync.h" #include +extern int itemize_changes; extern int am_sender; extern int eol_nulls; extern int recurse; @@ -33,7 +34,7 @@ static int *flag_ptr[] = { &preserve_devices, &preserve_hard_links, &always_checksum, - &xfer_dirs, + &itemize_changes, NULL }; @@ -46,6 +47,7 @@ static char *flag_name[] = { "--hard-links (-H)", "--checksum (-c)", "--dirs (-d)", + "--itemize-changes (-i)", NULL }; -- 2.34.1