workaround for timer glitch on some boards
[openwrt.git] / package / dnsmasq / files / dnsmasq.init
index 1d4cc5a..4d5b660 100644 (file)
@@ -44,20 +44,21 @@ dhcp_add() {
        }
        
        config_get start "$cfg" start
-       config_get end "$cfg" end
+       config_get limit "$cfg" limit
        config_get leasetime "$cfg" leasetime
        config_get options "$cfg" options
 
        leasetime="${leasetime:-12h}"
        start="$(dhcp_calc "${start:-100}")"
-       end="$((${end:-150} + 1))"
-       eval "$(ipcalc.sh $ipaddr $netmask $start $end)"
+       limit="$((${limit:-150} + 1))"
+       eval "$(ipcalc.sh $ipaddr $netmask $start $limit)"
        append args "-F $START,$END,$NETMASK,$leasetime${options:+ $options}"
 }
 
 start() {
        include /lib/network
        scan_interfaces
+       config_load /var/state/network
        config_load dhcp
 
        args=""
This page took 0.024406 seconds and 4 git commands to generate.