svn commit: trunk/busybox/networking
vda at busybox.net
vda at busybox.net
Wed May 16 15:25:36 PDT 2007
Author: vda
Date: 2007-05-16 15:25:35 -0700 (Wed, 16 May 2007)
New Revision: 18638
Log:
netstat: fix error in new -W option handling
Modified:
trunk/busybox/networking/netstat.c
Changeset:
Modified: trunk/busybox/networking/netstat.c
===================================================================
--- trunk/busybox/networking/netstat.c 2007-05-16 22:18:54 UTC (rev 18637)
+++ trunk/busybox/networking/netstat.c 2007-05-16 22:25:35 UTC (rev 18638)
@@ -499,6 +499,7 @@
int netstat_main(int argc, char **argv);
int netstat_main(int argc, char **argv)
{
+ const char *net_conn_line_header = PRINT_NET_CONN_HEADER;
unsigned opt;
#if ENABLE_FEATURE_IPV6
smallint inet = 1;
@@ -531,6 +532,7 @@
if (opt & OPT_widedisplay) { // -W
net_conn_line = PRINT_NET_CONN_WIDE;
+ net_conn_line_header = PRINT_NET_CONN_HEADER_WIDE;
}
opt &= NETSTAT_ALLPROTO;
@@ -547,8 +549,7 @@
printf("(only servers)");
else
printf("(w/o servers)");
- printf((opt & OPT_widedisplay) ? PRINT_NET_CONN_HEADER_WIDE : PRINT_NET_CONN_HEADER,
- "Local Address", "Foreign Address");
+ printf(net_conn_line_header, "Local Address", "Foreign Address");
}
if (inet && flags & NETSTAT_TCP)
do_info(_PATH_PROCNET_TCP, "AF INET (tcp)", tcp_do_one);
More information about the busybox-cvs
mailing list