[adm5120] more license cleanups
[openwrt.git] / package / dnsmasq / files / dnsmasq.init
index 69f499a..4425504 100644 (file)
@@ -23,7 +23,7 @@ append_bool() {
        local value="$3"
        local _loctmp
        config_get_bool _loctmp "$section" "$option"
-       [ "$_loctmp" -gt 0 ] && append args "$3"
+       [ "$_loctmp" -gt 0 ] && append args "$value"
 }
 
 append_parm() {
@@ -188,7 +188,8 @@ dhcp_add() {
        [ static = "$proto" ] || return 0
 
        config_get ipaddr "$net" ipaddr
-       config_get netmask "$net" netmask
+       config_get netmask "$cfg" netmask
+       [ -n "$netmask" ] || config_get netmask "$net" netmask
 
        #check for an already active dhcp server on the interface, unless 'force' is set
        config_get_bool force "$cfg" force 0
This page took 0.026143 seconds and 4 git commands to generate.