Made the new option-twiddling message only output when verbose.
authorWayne Davison <wayned@samba.org>
Sat, 24 Jul 2004 16:51:16 +0000 (16:51 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 24 Jul 2004 16:51:16 +0000 (16:51 +0000)
batch.c

diff --git a/batch.c b/batch.c
index 4c91f82..bd86ab5 100644 (file)
--- 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;
                }
        }