From: Wayne Davison Date: Mon, 29 May 2006 22:33:06 +0000 (+0000) Subject: The print_child_argv() function should be outputting FCLIENT X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/a3f6dbdf5c9d03a0dd84f6b5e37063f2d18fddcc The print_child_argv() function should be outputting FCLIENT messages these days, not FINFO. --- diff --git a/util.c b/util.c index 12b88edd..8dd1b1c3 100644 --- a/util.c +++ b/util.c @@ -92,7 +92,7 @@ int fd_pair(int fd[2]) void print_child_argv(char **cmd) { - rprintf(FINFO, "opening connection using "); + rprintf(FCLIENT, "opening connection using "); for (; *cmd; cmd++) { /* Look for characters that ought to be quoted. This * is not a great quoting algorithm, but it's @@ -101,12 +101,12 @@ void print_child_argv(char **cmd) "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "0123456789" ",.-_=+@/") != strlen(*cmd)) { - rprintf(FINFO, "\"%s\" ", *cmd); + rprintf(FCLIENT, "\"%s\" ", *cmd); } else { - rprintf(FINFO, "%s ", *cmd); + rprintf(FCLIENT, "%s ", *cmd); } } - rprintf(FINFO, "\n"); + rprintf(FCLIENT, "\n"); } void out_of_memory(char *str)