From: Jo-Philipp Wich Date: Sun, 19 Aug 2012 15:48:57 +0000 (+0000) Subject: protocols/core: fix bad .write() invocation in luci.tools.proto X-Git-Tag: 0.11.0~273 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=adedd765d4919c753017a1292d3dd1d522fe745f;p=oweals%2Fluci.git protocols/core: fix bad .write() invocation in luci.tools.proto --- diff --git a/protocols/core/luasrc/tools/proto.lua b/protocols/core/luasrc/tools/proto.lua index 740cf94b7..4df02696b 100644 --- a/protocols/core/luasrc/tools/proto.lua +++ b/protocols/core/luasrc/tools/proto.lua @@ -41,6 +41,6 @@ function opt_macaddr(s, ifc, ...) end function o.remove(self, section) - self:write(self, section, nil) + self:write(section, nil) end end