diff options
Diffstat (limited to 'networking/ping.c')
-rw-r--r-- | networking/ping.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/networking/ping.c b/networking/ping.c index 50f3930..c7cbd70 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -178,7 +178,10 @@ static int myid, options; static unsigned long tmin = ULONG_MAX, tmax, tsum; static char rcvd_tbl[MAX_DUP_CHK / 8]; -struct hostent *hostent; +#ifndef CONFIG_FEATURE_FANCY_PING6 +static +#endif + struct hostent *hostent; static void sendping(int); static void pingstats(int); |