From 1457915afcb8fb0697f441dce1697b278d25f4a5 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 26 Oct 2006 01:09:46 +0000 Subject: xconnect is non-conforming to "xfunc like libc" rule. Fixing --- networking/ftpgetput.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'networking/ftpgetput.c') diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index aafeaf6..6608e68 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c @@ -67,7 +67,7 @@ static int xconnect_ftpdata(ftp_host_info_t *server, const char *buf) port_num += xatoul_range(buf_ptr + 1, 0, 255) * 256; server->s_in->sin_port = htons(port_num); - return xconnect(server->s_in); + return xconnect_tcp_v4(server->s_in); } static FILE *ftp_login(ftp_host_info_t *server) @@ -76,7 +76,7 @@ static FILE *ftp_login(ftp_host_info_t *server) char buf[512]; /* Connect to the command socket */ - control_stream = fdopen(xconnect(server->s_in), "r+"); + control_stream = fdopen(xconnect_tcp_v4(server->s_in), "r+"); if (control_stream == NULL) { bb_perror_msg_and_die("cannot open control stream"); } -- cgit v1.1