summaryrefslogtreecommitdiffstats
path: root/sys/netipx/ipx_input.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2005-04-10 18:05:02 +0000
committerrwatson <rwatson@FreeBSD.org>2005-04-10 18:05:02 +0000
commitf6ea4e33f9e4e66f8d709bc6ab1d7049f3474734 (patch)
treeddad48cb93717e81c34ae4fa99b58cfacec7acb4 /sys/netipx/ipx_input.c
parent8ece8191fdb52fd9e4a9a680eaa214d27696b73a (diff)
downloadFreeBSD-src-f6ea4e33f9e4e66f8d709bc6ab1d7049f3474734.zip
FreeBSD-src-f6ea4e33f9e4e66f8d709bc6ab1d7049f3474734.tar.gz
Compare (mbuf *) with NULL, not 0.
MFC after: 3 days
Diffstat (limited to 'sys/netipx/ipx_input.c')
-rw-r--r--sys/netipx/ipx_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c
index 16c1c2d..7852e2b 100644
--- a/sys/netipx/ipx_input.c
+++ b/sys/netipx/ipx_input.c
@@ -152,7 +152,7 @@ ipxintr(struct mbuf *m)
ipxstat.ipxs_total++;
if ((m->m_flags & M_EXT || m->m_len < sizeof(struct ipx)) &&
- (m = m_pullup(m, sizeof(struct ipx))) == 0) {
+ (m = m_pullup(m, sizeof(struct ipx))) == NULL) {
ipxstat.ipxs_toosmall++;
return;
}
OpenPOWER on IntegriCloud