From d001ccb1968fe76221a7729efb0e76a28dcc9bf5 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 24 Jan 2015 08:38:13 -0600 Subject: [PATCH] Correct a typo in conditional compilation --- nshlib/nsh_netcmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nshlib/nsh_netcmds.c b/nshlib/nsh_netcmds.c index 11286c367..5540c66d8 100644 --- a/nshlib/nsh_netcmds.c +++ b/nshlib/nsh_netcmds.c @@ -279,7 +279,7 @@ static inline void net_statistics(FAR struct nsh_vtbl_s *vtbl) #ifdef CONFIG_NET_IPv4 nsh_output(vtbl, " IPv4"); #endif -#ifdef CONFIG_NET_IPv4 +#ifdef CONFIG_NET_IPv6 nsh_output(vtbl, " IPv6"); #endif #ifdef CONFIG_NET_TCP