git: f9a4a42eedcd - stable/15 - rc.d/{ipfilter,ippool}: Fix typo in variable name
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 10 Dec 2025 21:10:15 UTC
The branch stable/15 has been updated by cy:
URL: https://cgit.FreeBSD.org/src/commit/?id=f9a4a42eedcd8d283045c30e5dc531845a094e3c
commit f9a4a42eedcd8d283045c30e5dc531845a094e3c
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:06 +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 9b64fcff0c7a..1253294b09cf 100755
--- a/libexec/rc/rc.d/ipfilter
+++ b/libexec/rc/rc.d/ipfilter
@@ -33,7 +33,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 5ef0d0522621..f47a42267106 100755
--- a/libexec/rc/rc.d/ippool
+++ b/libexec/rc/rc.d/ippool
@@ -27,7 +27,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
}