Patch from Russell Coker:
authorEric Andersen <andersen@codepoet.org>
Thu, 22 May 2003 07:10:22 +0000 (07:10 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 22 May 2003 07:10:22 +0000 (07:10 -0000)
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.

networking/ping6.c

index c40624219fce1b9724afb017550732559fb910bb..d9d0dd343ff59f0c25c51707e128eea655a035f9 100644 (file)
@@ -1,6 +1,6 @@
 /* vi: set sw=4 ts=4: */
 /*
- * $Id: ping6.c,v 1.4 2003/03/19 09:12:38 mjn3 Exp $
+ * $Id: ping6.c,v 1.5 2003/05/22 07:10:22 andersen Exp $
  * Mini ping implementation for busybox
  *
  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@@ -77,6 +77,8 @@ static void ping(const char *host);
 
 /* simple version */
 #ifndef CONFIG_FEATURE_FANCY_PING6
+static struct hostent *h;
+
 void noresp(int ign)
 {
        printf("No response from %s\n", h->h_name);
@@ -85,7 +87,6 @@ void noresp(int ign)
 
 static void ping(const char *host)
 {
-       struct hostent *h;
        struct sockaddr_in6 pingaddr;
        struct icmp6_hdr *pkt;
        int pingsock, c;