diff options
author | 2007-05-27 19:55:13 +0000 | |
---|---|---|
committer | 2007-05-27 19:55:13 +0000 | |
commit | df48fb3a9fca08cb287e552c9bfa49afb1cec634 (patch) | |
tree | 4744085820f040e24c3995a9c4577d219c645a95 | |
parent | allow to specify table templates in the configuration file and to (diff) | |
download | wireguard-openbsd-df48fb3a9fca08cb287e552c9bfa49afb1cec634.tar.xz wireguard-openbsd-df48fb3a9fca08cb287e552c9bfa49afb1cec634.zip |
remove static from icmp_redirect_timeout
"commit it" art@ ok claudio@
-rw-r--r-- | sys/netinet/ip_icmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c index 021598285ab..f0b2a39eaa5 100644 --- a/sys/netinet/ip_icmp.c +++ b/sys/netinet/ip_icmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_icmp.c,v 1.74 2007/05/09 14:35:25 deraadt Exp $ */ +/* $OpenBSD: ip_icmp.c,v 1.75 2007/05/27 19:55:13 dlg Exp $ */ /* $NetBSD: ip_icmp.c,v 1.19 1996/02/13 23:42:22 christos Exp $ */ /* @@ -117,7 +117,7 @@ int *icmpctl_vars[ICMPCTL_MAXID] = ICMPCTL_VARS; void icmp_mtudisc_timeout(struct rtentry *, struct rttimer *); int icmp_ratelimit(const struct in_addr *, const int, const int); -static void icmp_redirect_timeout(struct rtentry *, struct rttimer *); +void icmp_redirect_timeout(struct rtentry *, struct rttimer *); extern struct protosw inetsw[]; @@ -1005,7 +1005,7 @@ icmp_ratelimit(const struct in_addr *dst, const int type, const int code) } /* XXX only handles table 0 right now */ -static void +void icmp_redirect_timeout(struct rtentry *rt, struct rttimer *r) { if (rt == NULL) |