firewall: ensure that fw_get_subnet4() sets an empty value if no (valid) IPv4 addr was found

SVN-Revision: 27198
This commit is contained in:
Jo-Philipp Wich 2011-06-16 22:18:45 +00:00
parent c014101d73
commit 9f37422f2f

View File

@ -242,5 +242,6 @@ fw_get_subnet4() {
export -n -- "$_var=! $_flag $_ipaddr/${_netmask:-255.255.255.255}" || \
export -n -- "$_var=$_flag $_ipaddr/${_netmask:-255.255.255.255}"
;;
*) export -n -- "$_var=" ;;
esac
}