From 8b8a0cef40484653ea28d3f45441870b400971fd Mon Sep 17 00:00:00 2001 From: Hajimu UMEMOTO Date: Wed, 24 Dec 2003 18:22:04 +0000 Subject: [PATCH] NULL is not 0. Submitted by: "Bjoern A. Zeeb" --- sys/netinet/ip_fw2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/ip_fw2.c b/sys/netinet/ip_fw2.c index 1d0da35d5686..836be9d61997 100644 --- a/sys/netinet/ip_fw2.c +++ b/sys/netinet/ip_fw2.c @@ -1915,7 +1915,7 @@ check_body: PACKET_TAG_IPSEC_IN_DONE, NULL) != NULL); #endif #ifdef IPSEC - match = (ipsec_getnhist(m) != NULL); + match = (ipsec_getnhist(m) != 0); #endif /* otherwise no match */ break;