ipfw: fix whitespace

No functional changes.
This commit is contained in:
Kristof Provost 2018-06-07 13:14:09 +00:00
parent a06424ddd3
commit 42faa80be3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334781

View File

@ -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