From de618daaf00d1d54dcf8dd0f059d8ff8e3188811 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 27 Aug 2016 11:06:06 +0000 Subject: [PATCH] Fix build without INET6 and with gcc. A function definition was ifdefed for INET6, but its protototype was not, and gcc detects the error. --- usr.bin/netstat/route.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c index 1cd831b9658..808f4cd660e 100644 --- a/usr.bin/netstat/route.c +++ b/usr.bin/netstat/route.c @@ -104,7 +104,9 @@ static int ifmap_size; static struct timespec uptime; static const char *netname4(in_addr_t, in_addr_t); +#ifdef INET6 static const char *netname6(struct sockaddr_in6 *, struct sockaddr_in6 *); +#endif static void p_rtable_sysctl(int, int); static void p_rtentry_sysctl(const char *name, struct rt_msghdr *); static int p_sockaddr(const char *name, struct sockaddr *, struct sockaddr *,