X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d3e182af0976f35cad31bd3aa08c8deaa20509b3..82471e68a8bb3da8ca95f2b6564c330c52ce891e:/batch.c diff --git a/batch.c b/batch.c index 4c91f82f..a8c21769 100644 --- a/batch.c +++ b/batch.c @@ -9,8 +9,6 @@ #include extern char *batch_name; -extern int delete_mode; -extern int delete_excluded; extern int eol_nulls; extern int recurse; extern int preserve_links; @@ -64,9 +62,11 @@ void read_stream_flags(int fd) for (i = 0, flags = read_int(fd); flag_ptr[i]; i++) { int set = flags & (1 << i) ? 1 : 0; if (*flag_ptr[i] != set) { - rprintf(FINFO, - "%sing the %s option to match the batchfile.\n", - set ? "Sett" : "Clear", flag_name[i]); + if (verbose) { + rprintf(FINFO, + "%sing the %s option to match the batchfile.\n", + set ? "Sett" : "Clear", flag_name[i]); + } *flag_ptr[i] = set; } }