Fix assertion description: !=, not ==.

Submitted by:	pjd
MFC after:	3 months
This commit is contained in:
rwatson 2006-04-09 16:33:41 +00:00
parent a7901a2d9c
commit 6354a580b6

View File

@ -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)