From 6354a580b627246f071aa82662c39a52354d5ebe Mon Sep 17 00:00:00 2001 From: rwatson Date: Sun, 9 Apr 2006 16:33:41 +0000 Subject: Fix assertion description: !=, not ==. Submitted by: pjd MFC after: 3 months --- sys/netinet6/udp6_usrreq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netinet6/udp6_usrreq.c') diff --git a/sys/netinet6/udp6_usrreq.c b/sys/netinet6/udp6_usrreq.c index e51f0da..65c2be9 100644 --- a/sys/netinet6/udp6_usrreq.c +++ b/sys/netinet6/udp6_usrreq.c @@ -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) -- cgit v1.1