From 95cf84377450afa1a4b9951dd746b6bbae4e90af Mon Sep 17 00:00:00 2001 From: Stan Grishin Date: Mon, 30 Sep 2019 10:48:48 -0700 Subject: luci-app-https_dns_proxy: bugfix: proper formatting of dhcp server entries Signed-off-by: Stan Grishin --- .../luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'applications/luci-app-https_dns_proxy/luasrc/model/cbi') diff --git a/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua b/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua index 03a3b4e083..2cc9f303c5 100644 --- a/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua +++ b/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua @@ -75,8 +75,8 @@ prov.write = function(self, section, value) if n == 0 then uci:delete("dhcp", "@dnsmasq[0]", "server") end - uci_del_list("dhcp", "@dnsmasq[0]", "server", tostring(la_val) .. ":" .. tostring(lp_val)) - uci_add_list("dhcp", "@dnsmasq[0]", "server", tostring(la_val) .. ":" .. tostring(lp_val)) + uci_del_list("dhcp", "@dnsmasq[0]", "server", tostring(la_val) .. "#" .. tostring(lp_val)) + uci_add_list("dhcp", "@dnsmasq[0]", "server", tostring(la_val) .. "#" .. tostring(lp_val)) uci:save("dhcp") end -- cgit v1.2.3