Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Dec 2025 21:10:34 +0000
From:      Cy Schubert <cy@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 448a117d06e6 - stable/14 - rc.d/{ipfilter,ippool}: Fix typo in variable name
Message-ID:  <6939e1ca.31adb.64afa5ee@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help

The branch stable/14 has been updated by cy:

URL: https://cgit.FreeBSD.org/src/commit/?id=448a117d06e6c857c55830bbf30684ed31503234

commit 448a117d06e6c857c55830bbf30684ed31503234
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2025-12-09 20:32:24 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2025-12-10 21:10:29 +0000

    rc.d/{ipfilter,ippool}: Fix typo in variable name
    
    (cherry picked from commit f04b23ce3547c238dcd52d4fa1a7d401ad38d1b1)
---
 libexec/rc/rc.d/ipfilter | 2 +-
 libexec/rc/rc.d/ippool   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libexec/rc/rc.d/ipfilter b/libexec/rc/rc.d/ipfilter
index 410303d3a128..e6cc99cdbcde 100755
--- a/libexec/rc/rc.d/ipfilter
+++ b/libexec/rc/rc.d/ipfilter
@@ -30,7 +30,7 @@ required_modules="ipl:ipfilter"
 ipfilter_start()
 {
 	echo "Enabling ipfilter."
-	if [ -n "${ifilter_optionlist}" ]; then
+	if [ -n "${ipfilter_optionlist}" ]; then
 		if ${ipfilter_program:-/sbin/ipf} -V | grep -q 'Running: yes'; then
 			${ipfilter_program:-/sbin/ipf} -D
 		fi
diff --git a/libexec/rc/rc.d/ippool b/libexec/rc/rc.d/ippool
index 527e1fc780b2..3c696af58e49 100755
--- a/libexec/rc/rc.d/ippool
+++ b/libexec/rc/rc.d/ippool
@@ -23,7 +23,7 @@ required_modules="ipl:ipfilter"
 ippool_start_precmd()
 {
 	rc_flags="-f ${ippool_rules} ${rc_flags}"
-	if [ -n "${ifilter_optionlist}" ]; then
+	if [ -n "${ipfilter_optionlist}" ]; then
 		${ipfilter_program:-/sbin/ipf} -T "${ipfilter_optionlist}"
 	fi
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6939e1ca.31adb.64afa5ee>