mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Commit correct version of previous commit (in_pcb.c:1.164). Use the
local variables as currently named. MFC after: 7 days
This commit is contained in:
parent
6b348152be
commit
fe6bfc3730
1 changed files with 2 additions and 2 deletions
|
|
@ -693,7 +693,7 @@ in_pcbdisconnect(inp)
|
|||
struct inpcb *inp;
|
||||
{
|
||||
|
||||
INP_INFO_WLOCK_ASSERT(pcbinfo);
|
||||
INP_INFO_WLOCK_ASSERT(inp->inp_pcbinfo);
|
||||
INP_LOCK_ASSERT(inp);
|
||||
|
||||
inp->inp_faddr.s_addr = INADDR_ANY;
|
||||
|
|
@ -713,7 +713,7 @@ in_pcbdetach(inp)
|
|||
struct socket *so = inp->inp_socket;
|
||||
struct inpcbinfo *ipi = inp->inp_pcbinfo;
|
||||
|
||||
INP_INFO_WLOCK_ASSERT(pcbinfo);
|
||||
INP_INFO_WLOCK_ASSERT(ipi);
|
||||
INP_LOCK_ASSERT(inp);
|
||||
|
||||
#if defined(IPSEC) || defined(FAST_IPSEC)
|
||||
|
|
|
|||
Loading…
Reference in a new issue