diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2025-12-09 12:32:24 -0800 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2025-12-09 12:33:26 -0800 |
| commit | f04b23ce3547c238dcd52d4fa1a7d401ad38d1b1 (patch) | |
| tree | 4c28afe90c9cef575468bba185fc9f51ca2e1a46 /libexec | |
| parent | ca942ab4b2b665e5375cc72afc4930d3b33b14f9 (diff) | |
rc.d/{ipfilter,ippool}: Fix typo in variable name
MFC after: 1 day
Diffstat (limited to 'libexec')
| -rwxr-xr-x | libexec/rc/rc.d/ipfilter | 2 | ||||
| -rwxr-xr-x | 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 } |
