diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-02-08 00:50:25 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-02-08 00:50:25 +0000 |
commit | e3c8b9a10b383138ba1a5ed7bea51fd3694f596d (patch) | |
tree | 01ed67d82278aace19bad999f2f9d105943c6c3a | |
parent | 474a6172680216ffea1484b04ab2c0c6ab0ad5e4 (diff) |
libs/sys/iptparser: remove typo, bump copyright year
-rw-r--r-- | libs/sys/luasrc/sys/iptparser.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/sys/luasrc/sys/iptparser.lua b/libs/sys/luasrc/sys/iptparser.lua index a1d0515af..c11fb5d56 100644 --- a/libs/sys/luasrc/sys/iptparser.lua +++ b/libs/sys/luasrc/sys/iptparser.lua @@ -1,8 +1,8 @@ --[[ Iptables parser and query library -(c) 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net> -(c) 2008 Steven Barth <steven@midlink.org> +(c) 2008-2009 Jo-Philipp Wich <xm@leipzig.freifunk.net> +(c) 2008-2009 Steven Barth <steven@midlink.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -216,7 +216,7 @@ function IptParser._parse_rules( self ) else if rule:find("%d") == 1 then - local rule_partmays = luci.util.split( rule, "%s+", nil, true ) + local rule_parts = luci.util.split( rule, "%s+", nil, true ) local rule_details = { } rule_details["table"] = tbl |