From 8f3994960dbf1cd23378492eeff75c9969b14602 Mon Sep 17 00:00:00 2001 From: cyrus Date: Sun, 7 Sep 2008 20:07:55 +0000 Subject: [PATCH] dnsmasq: Use a more intelligent way of parsing dhcp-options using the new UCI list datatype git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12547 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/dnsmasq/files/dnsmasq.init | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init index 864334957..4fddc4723 100644 --- a/package/dnsmasq/files/dnsmasq.init +++ b/package/dnsmasq/files/dnsmasq.init @@ -242,13 +242,9 @@ dhcp_option_add() { local cfg="$1" local name="$2" - for count in $(seq 0 100); do - eval current_value=\$CONFIG_"$cfg"_dhcp"$count" - if [ -z "$current_value" ]; then - let "count-=1" - break - fi - append args "-O $name","$current_value" + config_get dhcp_option "$cfg" dhcp_option + for o in $dhcp_option; do + append args "-O $name","$o" done } -- 2.35.1