Switching to a better rsync_port fix.

This commit is contained in:
Wayne Davison
2004-12-08 17:09:59 +00:00
parent 696a8d6191
commit cf510ad2c5

6
main.c
View File

@@ -829,8 +829,7 @@ static int start_client(int argc, char *argv[])
if (p) {
rsync_port = atoi(p+1);
*p = '\0';
} else
rsync_port = RSYNC_PORT;
}
return start_socket_client(host, path, argc-1, argv+1);
}
@@ -888,8 +887,7 @@ static int start_client(int argc, char *argv[])
if (p) {
rsync_port = atoi(p+1);
*p = '\0';
} else
rsync_port = RSYNC_PORT;
}
return start_socket_client(host, path, argc-1, argv);
}