diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-12 19:00:54 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-12 19:00:54 +0000 |
commit | 4eb853d2d26e00c0b9403d289eb35b493f4992f7 (patch) | |
tree | 3b532f89ef65f8c1bb7fe581cf1b00660d3a0e22 /libs/core | |
parent | e351f43f0c8ab59cc7df238881dcc335ef3ba36c (diff) |
libs/core: whitespace fix in previous commit
Diffstat (limited to 'libs/core')
-rw-r--r-- | libs/core/luasrc/ip.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/core/luasrc/ip.lua b/libs/core/luasrc/ip.lua index 77aecd283..c5148c22a 100644 --- a/libs/core/luasrc/ip.lua +++ b/libs/core/luasrc/ip.lua @@ -340,7 +340,7 @@ function cidr.is4rfc1918( self ) if self[1] == FAMILY_INET4 then return ((self[2][1] >= 0x0A00) and (self[2][1] <= 0x0AFF)) or ((self[2][1] >= 0xAC10) and (self[2][1] <= 0xAC1F)) or - (self[2][1] == 0xC0A8) + (self[2][1] == 0xC0A8) end return false end |