diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-11-05 14:14:06 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-11-05 14:14:06 +0000 |
commit | 47072a732bc1ed3fd41c85cc3716752cf43415c9 (patch) | |
tree | c195c519a047780b4e882d79b3c43f53dafb44c7 /package/dnsmasq/files | |
parent | 9bf479c8b18eeeff1c588c99672b86dfefa017ec (diff) | |
download | upstream-47072a732bc1ed3fd41c85cc3716752cf43415c9.tar.gz upstream-47072a732bc1ed3fd41c85cc3716752cf43415c9.tar.bz2 upstream-47072a732bc1ed3fd41c85cc3716752cf43415c9.zip |
Fix missing IP section to properly add static hosts (#2650)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9502 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dnsmasq/files')
-rw-r--r-- | package/dnsmasq/files/dnsmasq.init | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init index 9797490c47..75b20df0eb 100644 --- a/package/dnsmasq/files/dnsmasq.init +++ b/package/dnsmasq/files/dnsmasq.init @@ -144,6 +144,8 @@ dhcp_host_add() { config_get mac "$cfg" mac [ -n "$mac" ] || return 0 + config_get ip "$cfg" ip + [ -n "$ip" ] || return 0 append args "--dhcp-host=$mac,$ip" |