diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-08-01 15:24:00 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-08-01 15:24:00 +0000 |
commit | 30929d5e048d47271f06e8150ab73a60302c5643 (patch) | |
tree | 7eb1a80bc24c820a66bcd4b2876c4913325c7108 | |
parent | 7fd833384780cf385feac2cec23abc8ec41440a2 (diff) | |
download | upstream-30929d5e048d47271f06e8150ab73a60302c5643.tar.gz upstream-30929d5e048d47271f06e8150ab73a60302c5643.tar.bz2 upstream-30929d5e048d47271f06e8150ab73a60302c5643.zip |
Use the end variable instead of limit (#2142)
SVN-Revision: 8307
-rw-r--r-- | package/dnsmasq/files/dhcp.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/dnsmasq/files/dhcp.conf b/package/dnsmasq/files/dhcp.conf index fb55cf8b77..81453e7642 100644 --- a/package/dnsmasq/files/dhcp.conf +++ b/package/dnsmasq/files/dhcp.conf @@ -1,7 +1,7 @@ config dhcp option interface lan option start 100 - option limit 150 + option end 150 option leasetime 12h config dhcp |