aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/in_pcb.c
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2008-11-27 10:43:08 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2008-11-27 10:43:08 +0000
commit6974bd9e7543a0fc0afbc9de84f03ee27636b6f2 (patch)
treeeca4319bad999377e5c90305f8793b34edff34e8 /sys/netinet/in_pcb.c
parentd95afe050e06a980b4fcd870484f3d51601d5784 (diff)
downloadsrc-6974bd9e7543a0fc0afbc9de84f03ee27636b6f2.tar.gz
src-6974bd9e7543a0fc0afbc9de84f03ee27636b6f2.zip
Unify ipsec[46]_delete_pcbpolicy in ipsec_delete_pcbpolicy.
Ignoring different names because of macros (in6pcb, in6p_sp) and inp vs. in6p variable name both functions were entirely identical. Reviewed by: rwatson (as part of a larger changeset) MFC after: 6 weeks (*) (*) possibly need to leave a stub wrappers in 7 to keep the symbols.
Notes
Notes: svn path=/head/; revision=185366
Diffstat (limited to 'sys/netinet/in_pcb.c')
-rw-r--r--sys/netinet/in_pcb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 09fed47d71da..67d609cbb086 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -899,7 +899,7 @@ in_pcbfree(struct inpcb *inp)
INP_WLOCK_ASSERT(inp);
#ifdef IPSEC
- ipsec4_delete_pcbpolicy(inp);
+ ipsec_delete_pcbpolicy(inp);
#endif /* IPSEC */
inp->inp_gencnt = ++ipi->ipi_gencnt;
in_pcbremlists(inp);