X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/a261989cda6f671352e6323f11d2d98e923c622e..1bbd10fe070d8b07a8c4991e17d1fc04295fe42e:/util.c diff --git a/util.c b/util.c index 64473a30..8ba34744 100644 --- a/util.c +++ b/util.c @@ -86,7 +86,7 @@ int fd_pair(int fd[2]) void print_child_argv(char **cmd) { - rprintf(FINFO, RSYNC_NAME ": open connection using "); + rprintf(FINFO, "opening connection using "); for (; *cmd; cmd++) { /* Look for characters that ought to be quoted. This * is not a great quoting algorithm, but it's @@ -121,7 +121,7 @@ pid_t piped_child(char **command, int *f_in, int *f_out) int from_child_pipe[2]; extern int blocking_io; - if (verbose > 0) { + if (verbose >= 2) { print_child_argv(command); }