svn commit: r348524 - stable/12/sys/contrib/ipfilter/netinet

Cy Schubert cy at FreeBSD.org
Mon Jun 3 04:38:09 UTC 2019


Author: cy
Date: Mon Jun  3 04:38:07 2019
New Revision: 348524
URL: https://svnweb.freebsd.org/changeset/base/348524

Log:
  MFC r348312:
  
  style(9)

Modified:
  stable/12/sys/contrib/ipfilter/netinet/fil.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/contrib/ipfilter/netinet/fil.c
==============================================================================
--- stable/12/sys/contrib/ipfilter/netinet/fil.c	Mon Jun  3 04:36:57 2019	(r348523)
+++ stable/12/sys/contrib/ipfilter/netinet/fil.c	Mon Jun  3 04:38:07 2019	(r348524)
@@ -3913,7 +3913,7 @@ ipf_fixskip(listp, rp, addremove)
 	for (fp = *listp; (fp != NULL) && (fp != rp); fp = fp->fr_next)
 		rules++;
 
-	if (!fp)
+	if (fp == NULL)
 		return;
 
 	for (rn = 0, fp = *listp; fp && (fp != rp); fp = fp->fr_next, rn++)
@@ -5006,7 +5006,7 @@ frrequest(softc, unit, req, data, set, makecopy)
 		return error;
 	}
 
-  	if (!f) {
+	if (f == NULL) {
 		/*
 		 * At the end of this, ftail must point to the place where the
 		 * new rule is to be saved/inserted/added.
@@ -5052,7 +5052,7 @@ frrequest(softc, unit, req, data, set, makecopy)
 	 * Request to remove a rule.
 	 */
 	if (addrem == 1) {
-		if (!f) {
+		if (f == NULL) {
 			IPFERROR(29);
 			error = ESRCH;
 		} else {


More information about the svn-src-stable mailing list