summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-02-19 05:01:39 +0000
committerYasuyuki KOZAKAI <yasuyuki@netfilter.org>2007-02-19 05:01:39 +0000
commitee9e2205dfd53ffc35495dd60b43c59b77aa3839 (patch)
tree2e95b8233301eb1cadfb8e1d4d1e57193cb6d162
parente605d76ae18274c6acb6b93ed563ad0a74f0fc13 (diff)
Reverted r6754. libipt_icmp has the option 'any', so it's unnecessary
to check no option of ICMP type.
-rw-r--r--extensions/libipt_icmp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/extensions/libipt_icmp.c b/extensions/libipt_icmp.c
index ce468379..a6e642a2 100644
--- a/extensions/libipt_icmp.c
+++ b/extensions/libipt_icmp.c
@@ -281,12 +281,9 @@ static void save(const struct ipt_ip *ip, const struct ipt_entry_match *match)
}
}
-/* Final check; we don't care. */
+/* Final check; we don't care. We can pass 0xFF to match any type */
static void final_check(unsigned int flags)
{
- if (!flags)
- exit_error(PARAMETER_PROBLEM,
- "icmp match: You must specify `--icmp-type'");
}
static struct iptables_match icmp = {