Added the --info=FLAGS an --debug=FLAGS options, which allows
[rsync/rsync.git] / pipe.c
diff --git a/pipe.c b/pipe.c
index f32d63e..755da54 100644 (file)
--- a/pipe.c
+++ b/pipe.c
@@ -51,7 +51,7 @@ pid_t piped_child(char **command, int *f_in, int *f_out)
        int to_child_pipe[2];
        int from_child_pipe[2];
 
-       if (verbose >= 2)
+       if (DEBUG_GTE(CMD, 1))
                print_child_argv("opening connection using:", command);
 
        if (fd_pair(to_child_pipe) < 0 || fd_pair(from_child_pipe) < 0) {