diff --git a/etc/rc.d/ipfw b/etc/rc.d/ipfw index 1f1e5d20bf43..05cdb4178d59 100755 --- a/etc/rc.d/ipfw +++ b/etc/rc.d/ipfw @@ -117,14 +117,14 @@ ipfw_stop() ipfw_status() { - status=$(sysctl -n net.inet.ip.fw.enable) - if [ ${status} -eq 0 ]; then - echo "ipfw is not enabled" - exit 1 - else - echo "ipfw is enabled" - exit 0 - fi + status=$(sysctl -n net.inet.ip.fw.enable) + if [ ${status} -eq 0 ]; then + echo "ipfw is not enabled" + exit 1 + else + echo "ipfw is enabled" + exit 0 + fi } load_rc_config $name