aboutsummaryrefslogtreecommitdiffstats
path: root/package/dnsmasq
diff options
context:
space:
mode:
authorTravis Kemen <thepeople@openwrt.org>2010-03-18 01:39:02 +0000
committerTravis Kemen <thepeople@openwrt.org>2010-03-18 01:39:02 +0000
commit5ecf73fb5048d62f8f745b3fbfc85f36c5def1ef (patch)
tree3a27fa44313c474ac91936849ab53ed17fad9cb0 /package/dnsmasq
parentf99d39a0860e1d6bbc94a7ab49209abb9ad5daf6 (diff)
downloadupstream-5ecf73fb5048d62f8f745b3fbfc85f36c5def1ef.tar.gz
upstream-5ecf73fb5048d62f8f745b3fbfc85f36c5def1ef.tar.bz2
upstream-5ecf73fb5048d62f8f745b3fbfc85f36c5def1ef.zip
remove +1 as it isn't needed since 16619
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20259 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dnsmasq')
-rw-r--r--package/dnsmasq/files/dnsmasq.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init
index d796f2269a..3509d9473b 100644
--- a/package/dnsmasq/files/dnsmasq.init
+++ b/package/dnsmasq/files/dnsmasq.init
@@ -263,7 +263,7 @@ dhcp_add() {
leasetime="${leasetime:-12h}"
start="$(dhcp_calc "${start:-100}")"
- limit="$((${limit:-150} + 1))"
+ limit="$(${limit:-150})"
eval "$(ipcalc.sh $ipaddr $netmask $start $limit)"
if [ "$dynamicdhcp" = "0" ]; then END="static"; fi
append args "--dhcp-range=$networkid,$START,$END,$NETMASK,$leasetime${options:+ $options}"