X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b03c719f04ceddf003f7910ed2d4e70e7e9d56fa..c70e07d9ac09da1f00c531bb9137347f516f88f9:/clientserver.c diff --git a/clientserver.c b/clientserver.c index 0ed05145..531944aa 100644 --- a/clientserver.c +++ b/clientserver.c @@ -87,15 +87,12 @@ int start_socket_client(char *host, char *path, int argc, char *argv[]) return -1; } - if ((p = strchr(host, '@')) != NULL) { + if ((p = strrchr(host, '@')) != NULL) { user = host; host = p+1; *p = '\0'; } - if (rsync_port == 0) - rsync_port = RSYNC_PORT; - fd = open_socket_out_wrapped(host, rsync_port, bind_address, default_af_hint); if (fd == -1)