diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-05-22 07:10:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-05-22 07:10:22 +0000 |
commit | 787ff55a69ad28905f8e8b53fb87e7fafba9b051 (patch) | |
tree | c43ee98370e719652d49493087220a4e9b4deb6e | |
parent | 4fe3ff8cffce83b3132223daf80e3e77ca89c259 (diff) | |
download | busybox-w32-787ff55a69ad28905f8e8b53fb87e7fafba9b051.tar.gz busybox-w32-787ff55a69ad28905f8e8b53fb87e7fafba9b051.tar.bz2 busybox-w32-787ff55a69ad28905f8e8b53fb87e7fafba9b051.zip |
Patch from Russell Coker:
The attached patch fixes a compilation error. If you compile ping6 without
the CONFIG_FEATURE_FANCY_PING6 option then the compile will fail without this
patch.
-rw-r--r-- | networking/ping6.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/networking/ping6.c b/networking/ping6.c index c40624219..d9d0dd343 100644 --- a/networking/ping6.c +++ b/networking/ping6.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: ping6.c,v 1.4 2003/03/19 09:12:38 mjn3 Exp $ | 3 | * $Id: ping6.c,v 1.5 2003/05/22 07:10:22 andersen Exp $ |
4 | * Mini ping implementation for busybox | 4 | * Mini ping implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -77,6 +77,8 @@ static void ping(const char *host); | |||
77 | 77 | ||
78 | /* simple version */ | 78 | /* simple version */ |
79 | #ifndef CONFIG_FEATURE_FANCY_PING6 | 79 | #ifndef CONFIG_FEATURE_FANCY_PING6 |
80 | static struct hostent *h; | ||
81 | |||
80 | void noresp(int ign) | 82 | void noresp(int ign) |
81 | { | 83 | { |
82 | printf("No response from %s\n", h->h_name); | 84 | printf("No response from %s\n", h->h_name); |
@@ -85,7 +87,6 @@ void noresp(int ign) | |||
85 | 87 | ||
86 | static void ping(const char *host) | 88 | static void ping(const char *host) |
87 | { | 89 | { |
88 | struct hostent *h; | ||
89 | struct sockaddr_in6 pingaddr; | 90 | struct sockaddr_in6 pingaddr; |
90 | struct icmp6_hdr *pkt; | 91 | struct icmp6_hdr *pkt; |
91 | int pingsock, c; | 92 | int pingsock, c; |