diff options
-rw-r--r-- | awall/modules/filter.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awall/modules/filter.lua b/awall/modules/filter.lua index d5240f1..2cb5535 100644 --- a/awall/modules/filter.lua +++ b/awall/modules/filter.lua @@ -90,7 +90,8 @@ end function LimitReference:recentofrags() local ofs = self:recentmask() - return ofs and combinations(ofs, {{match='--set'}}) or self:error(MASK_ERROR) + return ofs and combinations(ofs, {{match='--set'}}) or + self:error('Invalid address mask for limit') end |