mirror of
https://github.com/sheumann/hush.git
synced 2025-01-12 14:30:54 +00:00
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.
This commit is contained in:
parent
4fe3ff8cff
commit
787ff55a69
@ -1,6 +1,6 @@
|
|||||||
/* vi: set sw=4 ts=4: */
|
/* 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
|
* Mini ping implementation for busybox
|
||||||
*
|
*
|
||||||
* Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
|
* Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
|
||||||
@ -77,6 +77,8 @@ static void ping(const char *host);
|
|||||||
|
|
||||||
/* simple version */
|
/* simple version */
|
||||||
#ifndef CONFIG_FEATURE_FANCY_PING6
|
#ifndef CONFIG_FEATURE_FANCY_PING6
|
||||||
|
static struct hostent *h;
|
||||||
|
|
||||||
void noresp(int ign)
|
void noresp(int ign)
|
||||||
{
|
{
|
||||||
printf("No response from %s\n", h->h_name);
|
printf("No response from %s\n", h->h_name);
|
||||||
@ -85,7 +87,6 @@ void noresp(int ign)
|
|||||||
|
|
||||||
static void ping(const char *host)
|
static void ping(const char *host)
|
||||||
{
|
{
|
||||||
struct hostent *h;
|
|
||||||
struct sockaddr_in6 pingaddr;
|
struct sockaddr_in6 pingaddr;
|
||||||
struct icmp6_hdr *pkt;
|
struct icmp6_hdr *pkt;
|
||||||
int pingsock, c;
|
int pingsock, c;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user