summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2000-06-20 17:56:11 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2000-06-20 17:56:11 +0000
commit0c9ae9728f90616a5c2792d45ffa54da8b32cc2a (patch)
tree03d275e6e044a568e6ce70578d0145608429109c /sys/netinet
parent7c0592f3b4e24d031e92ea59f987d79bed3b18ae (diff)
Remove static from arptimer so that "show callout" in ddb shows the right
function.
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/if_ether.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c
index 603e8701ed5..d040c361d55 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ether.c,v 1.20 2000/03/17 22:05:57 art Exp $ */
+/* $OpenBSD: if_ether.c,v 1.21 2000/06/20 17:56:10 art Exp $ */
/* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */
/*
@@ -85,7 +85,7 @@ int arpt_down = 20; /* once declared down, don't send for 20 secs */
static void arprequest
__P((struct arpcom *, u_int32_t *, u_int32_t *, u_int8_t *));
static void arptfree __P((struct llinfo_arp *));
-static void arptimer __P((void *));
+void arptimer __P((void *));
static struct llinfo_arp *arplookup __P((u_int32_t, int, int));
static void in_arpinput __P((struct mbuf *));
@@ -116,7 +116,7 @@ static int db_show_radix_node __P((struct radix_node *, void *));
* Timeout routine. Age arp_tab entries periodically.
*/
/* ARGSUSED */
-static void
+void
arptimer(arg)
void *arg;
{