From: Martin Pool Date: Thu, 24 Jan 2002 04:21:42 +0000 (+0000) Subject: Show helper program with -v when opening connection. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5d2640376e3b5b21f6049161b55baf6f4e2acce8 Show helper program with -v when opening connection. Doc. --- diff --git a/socket.c b/socket.c index 8f8d96dd..88228046 100644 --- a/socket.c +++ b/socket.c @@ -830,6 +830,13 @@ static int socketpair_tcp(int fd[2]) int sock_exec(const char *prog) { int fd[2]; + + if (verbose > 0) { + rprintf(FINFO, RSYNC_NAME + ": open connection using \"%s\"\n", + prog); + } + if (socketpair_tcp(fd) != 0) { rprintf (FERROR, RSYNC_NAME ": socketpair_tcp failed (%s)\n", @@ -842,10 +849,12 @@ int sock_exec(const char *prog) close(1); dup(fd[1]); dup(fd[1]); - if (verbose > 3) + if (verbose > 3) { + /* Can't use rprintf because we've forked. */ fprintf (stderr, RSYNC_NAME ": execute socket program \"%s\"\n", prog); + } exit (system (prog)); } close (fd[1]);