From: Rusty Russell Date: Fri, 1 Sep 2000 06:04:05 +0000 (+0000) Subject: Missing ; X-Git-Tag: v1.2.1~107 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b039b02c20a321bb26350d0903a6a1137ba237ba;p=thirdparty%2Fiptables.git Missing ; --- diff --git a/iptables.c b/iptables.c index 697e0c1b..4dbe8917 100644 --- a/iptables.c +++ b/iptables.c @@ -1061,7 +1061,7 @@ print_match(const struct ipt_entry_match *m, if (match->print) match->print(ip, m, numeric); else - printf("%s ", match->name) + printf("%s ", match->name); } else { if (m->u.user.name[0]) printf("UNKNOWN match `%s' ", m->u.user.name);