Module Name: src Committed By: liamjfoy Date: Mon Jan 2 22:17:11 UTC 2012
Modified Files: src/sys/netinet: if_arp.c Log Message: Remove dead variable To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 src/sys/netinet/if_arp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/netinet/if_arp.c diff -u src/sys/netinet/if_arp.c:1.153 src/sys/netinet/if_arp.c:1.154 --- src/sys/netinet/if_arp.c:1.153 Sat Dec 31 20:41:58 2011 +++ src/sys/netinet/if_arp.c Mon Jan 2 22:17:11 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: if_arp.c,v 1.153 2011/12/31 20:41:58 christos Exp $ */ +/* $NetBSD: if_arp.c,v 1.154 2012/01/02 22:17:11 liamjfoy Exp $ */ /*- * Copyright (c) 1998, 2000, 2008 The NetBSD Foundation, Inc. @@ -68,7 +68,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.153 2011/12/31 20:41:58 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.154 2012/01/02 22:17:11 liamjfoy Exp $"); #include "opt_ddb.h" #include "opt_inet.h" @@ -161,7 +161,7 @@ struct ifqueue arpintrq = { .ifq_maxlen = 50, .ifq_drops = 0, }; -int arp_inuse, arp_allocated, arp_intimer; +int arp_inuse, arp_allocated; int arp_maxtries = 5; int useloopback = 1; /* use loopback interface for local traffic */ int arpinit_done = 0;