From 6a48e792c1c5d82c62498502e3f98f67acc716f0 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 24 Jul 2004 16:51:16 +0000 Subject: [PATCH] Made the new option-twiddling message only output when verbose. --- batch.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/batch.c b/batch.c index 4c91f82f..bd86ab5a 100644 --- a/batch.c +++ b/batch.c @@ -64,9 +64,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; } } -- 2.34.1