summaryrefslogtreecommitdiffstats
path: root/iptables.c
diff options
context:
space:
mode:
authorrusty <rusty>2000-09-01 06:01:00 +0000
committerrusty <rusty>2000-09-01 06:01:00 +0000
commit70177d974e395069698bc5c6b8fd6050eb08e812 (patch)
tree03ca6abbbd836e13f8ad877bcf3399ae90f52c92 /iptables.c
parent278313365aee1554ad9139473bad118662d93b9c (diff)
Fixes for targets with no print() function.
Diffstat (limited to 'iptables.c')
-rw-r--r--iptables.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/iptables.c b/iptables.c
index d94cbd9..697e0c1 100644
--- a/iptables.c
+++ b/iptables.c
@@ -1060,6 +1060,8 @@ print_match(const struct ipt_entry_match *m,
if (match) {
if (match->print)
match->print(ip, m, numeric);
+ else
+ printf("%s ", match->name)
} else {
if (m->u.user.name[0])
printf("UNKNOWN match `%s' ", m->u.user.name);