From 0c9ae9728f90616a5c2792d45ffa54da8b32cc2a Mon Sep 17 00:00:00 2001 From: Artur Grabowski Date: Tue, 20 Jun 2000 17:56:11 +0000 Subject: Remove static from arptimer so that "show callout" in ddb shows the right function. --- sys/netinet/if_ether.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/netinet/if_ether.c') 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; { -- cgit v1.2.3