diff options
Diffstat (limited to 'usr.sbin/route6d/route6d.c')
-rw-r--r-- | usr.sbin/route6d/route6d.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.sbin/route6d/route6d.c b/usr.sbin/route6d/route6d.c index 7d873d4dfa40..17b985fac2c0 100644 --- a/usr.sbin/route6d/route6d.c +++ b/usr.sbin/route6d/route6d.c @@ -1,4 +1,3 @@ -/* $FreeBSD$ */ /* $KAME: route6d.c,v 1.104 2003/10/31 00:30:20 itojun Exp $ */ /*- @@ -32,9 +31,6 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char _rcsid[] = "$KAME: route6d.c,v 1.104 2003/10/31 00:30:20 itojun Exp $"; -#endif #include <sys/param.h> #include <sys/file.h> @@ -101,7 +97,7 @@ struct ifc { /* Configuration of an interface */ }; static TAILQ_HEAD(, ifc) ifc_head = TAILQ_HEAD_INITIALIZER(ifc_head); -struct ifac { /* Adddress associated to an interface */ +struct ifac { /* Address associated to an interface */ TAILQ_ENTRY(ifac) ifac_next; struct ifc *ifac_ifc; /* back pointer */ @@ -1690,7 +1686,7 @@ ifremove(int ifindex) /* * Receive and process routing messages. - * Update interface information as necesssary. + * Update interface information as necessary. */ static void rtrecv(void) |