From 5d2640376e3b5b21f6049161b55baf6f4e2acce8 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Thu, 24 Jan 2002 04:21:42 +0000 Subject: [PATCH] Show helper program with -v when opening connection. Doc. --- socket.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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]); -- 2.34.1