connect.c: remove unused parameters from tcp_connect and proxy_connect

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-06-28 03:50:33 -07:00
parent 554fe20d80
commit c78963d280

View File

@ -451,8 +451,7 @@ static int git_tcp_connect_sock(char *host)
#endif /* NO_IPV6 */ #endif /* NO_IPV6 */
static void git_tcp_connect(int fd[2], static void git_tcp_connect(int fd[2], char *host)
const char *prog, char *host, char *path)
{ {
int sockfd = git_tcp_connect_sock(host); int sockfd = git_tcp_connect_sock(host);
@ -522,8 +521,7 @@ static int git_use_proxy(const char *host)
return (git_proxy_command && *git_proxy_command); return (git_proxy_command && *git_proxy_command);
} }
static void git_proxy_connect(int fd[2], static void git_proxy_connect(int fd[2], char *host)
const char *prog, char *host, char *path)
{ {
const char *port = STR(DEFAULT_GIT_PORT); const char *port = STR(DEFAULT_GIT_PORT);
char *colon, *end; char *colon, *end;
@ -643,9 +641,9 @@ int git_connect(int fd[2], char *url, const char *prog)
*/ */
char *target_host = strdup(host); char *target_host = strdup(host);
if (git_use_proxy(host)) if (git_use_proxy(host))
git_proxy_connect(fd, prog, host, path); git_proxy_connect(fd, host);
else else
git_tcp_connect(fd, prog, host, path); git_tcp_connect(fd, host);
/* /*
* Separate original protocol components prog and path * Separate original protocol components prog and path
* from extended components with a NUL byte. * from extended components with a NUL byte.