1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 21:32:01 +03:00

Use a more explicit variable name for the number of dhcp leases (#2240)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8437 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-08-19 20:50:52 +00:00
parent 5ef93ec8e1
commit e76b8552e2
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
config dhcp
option interface lan
option start 100
option end 150
option limit 150
option leasetime 12h
config dhcp

View File

@ -44,14 +44,14 @@ 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}"
}