From: Martin Pool Date: Thu, 24 Jan 2002 04:24:12 +0000 (+0000) Subject: Doc. X-Git-Tag: v2.5.2pre2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=255810c0d6bf747e6942fa81aebf231903a5c48f;p=thirdparty%2Frsync.git Doc. Oops, connection program message was in the wrong place. --- diff --git a/socket.c b/socket.c index 88228046..84d17f55 100644 --- a/socket.c +++ b/socket.c @@ -820,8 +820,8 @@ static int socketpair_tcp(int fd[2]) /** * Run a program on a local tcp socket, so that we can talk to it's - * stdin and stdout. This is used to launch ssh and similar - * connection helper programs for rsync. + * stdin and stdout. This is used to fake a connection to a daemon + * for testing -- not for the normal case of running SSH. * * @return a socket which is attached to a subprocess running * "prog". stdin and stdout are attached. stderr is left attached to @@ -830,12 +830,6 @@ 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