From: Jo-Philipp Wich Date: Thu, 21 Jul 2011 15:33:26 +0000 (+0000) Subject: luci-0.10: merge r7328 X-Git-Tag: 0.10.0~94 X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=4b4454a3b33e956ad3a86bdbee0fae89ff5c5a6a;p=project%2Fluci.git luci-0.10: merge r7328 --- diff --git a/applications/luci-wol/luasrc/model/cbi/wol.lua b/applications/luci-wol/luasrc/model/cbi/wol.lua index 30467f430..ad3479bca 100644 --- a/applications/luci-wol/luasrc/model/cbi/wol.lua +++ b/applications/luci-wol/luasrc/model/cbi/wol.lua @@ -72,7 +72,14 @@ end uci:foreach("dhcp", "host", function(s) if s.mac and s.ip then - arp[s.mac:upper()] = { s.ip, s.name } + if type(s.mac) == "table" then + local m + for _, m in ipairs(s.mac) do + arp[m:upper()] = { s.ip, s.name } + end + else + arp[s.mac:upper()] = { s.ip, s.name } + end end end)