X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/9dce9b45b3fb2417fd09264ae085e6c89572d058..e30f065766d103b47aaccbe777308e0d2381fd6e:/clientserver.c diff --git a/clientserver.c b/clientserver.c index 5f03226d..bb367b01 100644 --- a/clientserver.c +++ b/clientserver.c @@ -36,6 +36,7 @@ int start_socket_client(char *host, char *path, int argc, char *argv[]) char *p, *user=NULL; extern int remote_version; extern int am_sender; + extern struct in_addr socket_address; if (*path == '/') { rprintf(FERROR,"ERROR: The remote path must start with a module name\n"); @@ -52,7 +53,7 @@ int start_socket_client(char *host, char *path, int argc, char *argv[]) if (!user) user = getenv("USER"); if (!user) user = getenv("LOGNAME"); - fd = open_socket_out(host, rsync_port); + fd = open_socket_out(host, rsync_port, &socket_address); if (fd == -1) { exit_cleanup(RERR_SOCKETIO); }