aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-12-26 00:23:35 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-12-26 00:23:35 +0000
commit6a19e3eb173a835b4ab0e2cc63a31be5f979589e (patch)
tree53e7a7a38d36ea2428ff526f4817a2be18296374 /package
parent182b9a7903f123876f34fb36d251418c711bed85 (diff)
downloadmaster-187ad058-6a19e3eb173a835b4ab0e2cc63a31be5f979589e.tar.gz
master-187ad058-6a19e3eb173a835b4ab0e2cc63a31be5f979589e.tar.bz2
master-187ad058-6a19e3eb173a835b4ab0e2cc63a31be5f979589e.zip
[package] dnsmasq:
While trying to document the dhcp UCI config, I noticed that the name config option is applied wrongly when adding static addresses. Cf. the dnsmasq man page. Signed-off-by: Stefan Bethke <stb@lassitu.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18934 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/dnsmasq/Makefile2
-rw-r--r--package/dnsmasq/files/dnsmasq.init2
2 files changed, 2 insertions, 2 deletions
diff --git a/package/dnsmasq/Makefile b/package/dnsmasq/Makefile
index 27f438c738..1441a196b4 100644
--- a/package/dnsmasq/Makefile
+++ b/package/dnsmasq/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=dnsmasq
PKG_VERSION:=2.51
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init
index bc14aa6c41..3532dbd652 100644
--- a/package/dnsmasq/files/dnsmasq.init
+++ b/package/dnsmasq/files/dnsmasq.init
@@ -180,7 +180,7 @@ dhcp_host_add() {
config_get ip "$cfg" ip
[ -n "$ip" ] || return 0
- append args "--dhcp-host=$mac,$ip${name:+,$name}"
+ append args "--dhcp-host=$mac,${name:+net:$name,}$ip"
}
dhcp_mac_add() {