Fix assertion description: !=, not ==.
Submitted by: pjd MFC after: 3 months
This commit is contained in:
parent
a7901a2d9c
commit
6354a580b6
@ -519,7 +519,7 @@ udp6_attach(struct socket *so, int proto, struct thread *td)
|
||||
int s, error;
|
||||
|
||||
inp = sotoinpcb(so);
|
||||
KASSERT(inp == NULL, ("udp6_attach: inp == NULL"));
|
||||
KASSERT(inp == NULL, ("udp6_attach: inp != NULL"));
|
||||
if (so->so_snd.sb_hiwat == 0 || so->so_rcv.sb_hiwat == 0) {
|
||||
error = soreserve(so, udp_sendspace, udp_recvspace);
|
||||
if (error)
|
||||
|
Loading…
Reference in New Issue
Block a user