diff options
author | Denis Vlasenko | 2006-10-26 01:09:46 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-26 01:09:46 +0000 |
commit | 1457915afcb8fb0697f441dce1697b278d25f4a5 (patch) | |
tree | 4f61a7fd5a6a3ebbca053c55dc68b8a3edb7700b /networking/wget.c | |
parent | 940b2e4b734e92cd6dd10c33910439478812d106 (diff) | |
download | busybox-1457915afcb8fb0697f441dce1697b278d25f4a5.zip busybox-1457915afcb8fb0697f441dce1697b278d25f4a5.tar.gz |
xconnect is non-conforming to "xfunc like libc" rule. Fixing
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 090b58d..425abc1 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -585,7 +585,7 @@ static FILE *open_socket(struct sockaddr_in *s_in) { FILE *fp; - fp = fdopen(xconnect(s_in), "r+"); + fp = fdopen(xconnect_tcp_v4(s_in), "r+"); if (fp == NULL) bb_perror_msg_and_die("fdopen"); |