aboutsummaryrefslogtreecommitdiffstats
path: root/package
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
commite2f86520c59eb8fcb8da6e18841e89d1aadb2992 (patch)
treeac07cf8968c337c02d2eaf5d9a0614f48dcb595c /package
parent3b12eda623e05ff60a037ea535286f368434024f (diff)
downloadupstream-e2f86520c59eb8fcb8da6e18841e89d1aadb2992.tar.gz
upstream-e2f86520c59eb8fcb8da6e18841e89d1aadb2992.tar.bz2
upstream-e2f86520c59eb8fcb8da6e18841e89d1aadb2992.zip
remove +1 as it isn't needed since 16619
SVN-Revision: 20259
Diffstat (limited to 'package')
-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}"