From adedd765d4919c753017a1292d3dd1d522fe745f Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 19 Aug 2012 15:48:57 +0000 Subject: [PATCH] protocols/core: fix bad .write() invocation in luci.tools.proto --- protocols/core/luasrc/tools/proto.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.0