From b416696205e50a02486f5c941f0c0fbad33bc374 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 30 Jun 2014 17:52:59 -0600 Subject: [PATCH] Cosmetic changes, updates to README files, updates to some comments --- nshlib/README.txt | 4 ++-- nshlib/nsh_netcmds.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nshlib/README.txt b/nshlib/README.txt index f4dc84be7..d894c9deb 100644 --- a/nshlib/README.txt +++ b/nshlib/README.txt @@ -483,8 +483,8 @@ o ifconfig [nic_name [|dhcp]] [dr|gw|gateway ] [netmask eth0 HWaddr 00:18:11:80:10:06 IPaddr:10.0.0.2 DRaddr:10.0.0.1 Mask:255.255.255.0 - if uIP statistics are enabled (CONFIG_NET_STATISTICS), then - this command will also show the detailed state of uIP. + if networking statistics are enabled (CONFIG_NET_STATISTICS), then + this command will also show the detailed state of transfers by protocol. o ifdown diff --git a/nshlib/nsh_netcmds.c b/nshlib/nsh_netcmds.c index 4ea58d974..83bd56c76 100644 --- a/nshlib/nsh_netcmds.c +++ b/nshlib/nsh_netcmds.c @@ -169,7 +169,7 @@ static inline uint16_t ping_newid(void) #if defined(CONFIG_NET_STATISTICS) && !defined(CONFIG_NSH_DISABLE_IFCONFIG) static inline void net_statistics(FAR struct nsh_vtbl_s *vtbl) { - nsh_output(vtbl, "uIP IP "); + nsh_output(vtbl, " IP "); #ifdef CONFIG_NET_TCP nsh_output(vtbl, " TCP"); #endif