diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-12 22:14:34 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-12 22:14:34 +0000 |
commit | 4e6d5117b839cef41cd3919966f95bf25d24d8d9 (patch) | |
tree | 277c292905fefcdf40530c8c29e87d6b8c5f7864 /networking/nc_bloaty.c | |
parent | 4e6c8120a53709c4a352db42e997303844c74584 (diff) | |
download | busybox-w32-4e6d5117b839cef41cd3919966f95bf25d24d8d9.tar.gz busybox-w32-4e6d5117b839cef41cd3919966f95bf25d24d8d9.tar.bz2 busybox-w32-4e6d5117b839cef41cd3919966f95bf25d24d8d9.zip |
inetd: make it NOMMU-capable and IPv6-friendly. Lots of renames
of variable/function names
Total: -2474 bytes
text data bss dec hex filename
802215 661 7452 810328 c5d58 busybox_old
800120 661 7428 808209 c5511 busybox_unstripped
Diffstat (limited to 'networking/nc_bloaty.c')
-rw-r--r-- | networking/nc_bloaty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/nc_bloaty.c b/networking/nc_bloaty.c index cd014781b..2ee833e3f 100644 --- a/networking/nc_bloaty.c +++ b/networking/nc_bloaty.c | |||
@@ -756,7 +756,7 @@ int nc_main(int argc, char **argv) | |||
756 | /* We try IPv6, then IPv4, unless addr family is | 756 | /* We try IPv6, then IPv4, unless addr family is |
757 | * implicitly set by way of remote addr/port spec */ | 757 | * implicitly set by way of remote addr/port spec */ |
758 | x = xsocket_type(&ouraddr, | 758 | x = xsocket_type(&ouraddr, |
759 | USE_FEATURE_IPV6((themaddr ? themaddr->u.sa.sa_family : AF_UNSPEC),) | 759 | (themaddr ? themaddr->u.sa.sa_family : AF_UNSPEC), |
760 | x); | 760 | x); |
761 | if (o_lport) | 761 | if (o_lport) |
762 | set_nport(ouraddr, htons(o_lport)); | 762 | set_nport(ouraddr, htons(o_lport)); |