aboutsummaryrefslogtreecommitdiff
path: root/networking/wget.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-22 09:36:41 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-22 09:36:41 +0000
commit85629f08bcea5d4a44b6d511422fd608bbc3fc45 (patch)
treefc8639d0223328741368e3180d4d1fc3e4f84871 /networking/wget.c
parent3c99a599155b970a81de26ffcea6f16940324e62 (diff)
downloadbusybox-w32-85629f08bcea5d4a44b6d511422fd608bbc3fc45.tar.gz
busybox-w32-85629f08bcea5d4a44b6d511422fd608bbc3fc45.tar.bz2
busybox-w32-85629f08bcea5d4a44b6d511422fd608bbc3fc45.zip
comment out unused old networking API parts
sockaddr2dotted: return IPV6 addrs in [addr]:port form (was addr:port)
Diffstat (limited to 'networking/wget.c')
-rw-r--r--networking/wget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c
index 056d2c7fc..0e0268770 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -235,9 +235,9 @@ int wget_main(int argc, char **argv)
235 * and we want to connect to only one IP... */ 235 * and we want to connect to only one IP... */
236 lsa = host2sockaddr(server.host, server.port); 236 lsa = host2sockaddr(server.host, server.port);
237 if (!(opt & WGET_OPT_QUIET)) { 237 if (!(opt & WGET_OPT_QUIET)) {
238 fprintf(stderr, "Connecting to %s [%s]\n", server.host, 238 fprintf(stderr, "Connecting to %s (%s)\n", server.host,
239 xmalloc_sockaddr2dotted(&lsa->sa, lsa->len)); 239 xmalloc_sockaddr2dotted(&lsa->sa, lsa->len));
240 /* We leak xmalloc_sockaddr2dotted result */ 240 /* We leak result of xmalloc_sockaddr2dotted */
241 } 241 }
242 242
243 if (use_proxy || !target.is_ftp) { 243 if (use_proxy || !target.is_ftp) {