diff options
author | 2018-09-04 20:34:10 +0000 | |
---|---|---|
committer | 2018-09-04 20:34:10 +0000 | |
commit | 73f32125c47d194e9f181ae1771a9b70b1014aa0 (patch) | |
tree | 711a50cfdd8dd5fec1b403b3b9a0e7808a272608 | |
parent | Avoid traversing the list of fragment entris to check whether the (diff) | |
download | wireguard-openbsd-73f32125c47d194e9f181ae1771a9b70b1014aa0.tar.xz wireguard-openbsd-73f32125c47d194e9f181ae1771a9b70b1014aa0.zip |
Forgot to rename pf_frent_holes() prototype in previous commit.
-rw-r--r-- | sys/net/pf_norm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pf_norm.c b/sys/net/pf_norm.c index 57447e2d558..423334fca00 100644 --- a/sys/net/pf_norm.c +++ b/sys/net/pf_norm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_norm.c,v 1.211 2018/09/04 19:09:39 bluhm Exp $ */ +/* $OpenBSD: pf_norm.c,v 1.212 2018/09/04 20:34:10 bluhm Exp $ */ /* * Copyright 2001 Niels Provos <provos@citi.umich.edu> @@ -127,7 +127,7 @@ void pf_flush_fragments(void); void pf_free_fragment(struct pf_fragment *); struct pf_fragment *pf_find_fragment(struct pf_frnode *, u_int32_t); struct pf_frent *pf_create_fragment(u_short *); -int pf_fragment_holes(struct pf_frent *); +int pf_frent_holes(struct pf_frent *); struct pf_fragment *pf_fillup_fragment(struct pf_frnode *, u_int32_t, struct pf_frent *, u_short *); struct mbuf *pf_join_fragment(struct pf_fragment *); |