Module Name: src Committed By: lukem Date: Sun Apr 19 07:49:07 UTC 2009
Modified Files: src/usr.sbin/ifmcstat: ifmcstat.c Log Message: Fix WARNS=4 issues (-Wextra -Wshadow) To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/ifmcstat/ifmcstat.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/ifmcstat/ifmcstat.c diff -u src/usr.sbin/ifmcstat/ifmcstat.c:1.9 src/usr.sbin/ifmcstat/ifmcstat.c:1.10 --- src/usr.sbin/ifmcstat/ifmcstat.c:1.9 Tue Nov 16 05:59:32 2004 +++ src/usr.sbin/ifmcstat/ifmcstat.c Sun Apr 19 07:49:07 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: ifmcstat.c,v 1.9 2004/11/16 05:59:32 itojun Exp $ */ +/* $NetBSD: ifmcstat.c,v 1.10 2009/04/19 07:49:07 lukem Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -66,12 +66,12 @@ struct nlist nl[] = { #define N_IFNET 0 - { "_ifnet" }, + { "_ifnet", 0, 0, 0, 0 }, #if !(defined(__FreeBSD__) && __FreeBSD__ >= 3) #define N_IN6_MK 1 - { "_in6_mk" }, + { "_in6_mk", 0, 0, 0, 0 }, #endif - { "" }, + { "", 0, 0, 0, 0 }, }; const char *inet6_n2a __P((struct in6_addr *)); @@ -134,7 +134,7 @@ int main() { - char buf[_POSIX2_LINE_MAX], ifname[IFNAMSIZ]; + char buf[_POSIX2_LINE_MAX], ifnam[IFNAMSIZ]; struct ifnet *ifp, *nifp, ifnet; #ifndef __NetBSD__ struct arpcom arpcom; @@ -158,7 +158,7 @@ KREAD(nl[N_IFNET].n_value, &ifp, struct ifnet *); while (ifp) { KREAD(ifp, &ifnet, struct ifnet); - printf("%s:\n", if_indextoname(ifnet.if_index, ifname)); + printf("%s:\n", if_indextoname(ifnet.if_index, ifnam)); #if defined(__NetBSD__) || defined(__OpenBSD__) if6_addrlist(ifnet.if_addrlist.tqh_first);