svn commit: r304895 - head/usr.bin/netstat
Bruce Evans
bde at FreeBSD.org
Sat Aug 27 11:06:07 UTC 2016
Author: bde
Date: Sat Aug 27 11:06:06 2016
New Revision: 304895
URL: https://svnweb.freebsd.org/changeset/base/304895
Log:
Fix build without INET6 and with gcc. A function definition was ifdefed
for INET6, but its protototype was not, and gcc detects the error.
Modified:
head/usr.bin/netstat/route.c
Modified: head/usr.bin/netstat/route.c
==============================================================================
--- head/usr.bin/netstat/route.c Sat Aug 27 10:56:04 2016 (r304894)
+++ head/usr.bin/netstat/route.c Sat Aug 27 11:06:06 2016 (r304895)
@@ -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 *,
More information about the svn-src-head
mailing list