From 419968925d01571b2f454abb2b80a0f30b7f3227 Mon Sep 17 00:00:00 2001 From: Tomasz Bursztyka Date: Wed, 4 Sep 2013 12:50:21 +0300 Subject: src: Add priority keyword on base chain description Instead of: add chain foo bar { type route hook input 0; } it should be now: add chain foo bar { type route hook input priority 0; } Signed-off-by: Tomasz Bursztyka --- src/rule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rule.c') diff --git a/src/rule.c b/src/rule.c index f493cd48..42ba37f4 100644 --- a/src/rule.c +++ b/src/rule.c @@ -295,7 +295,7 @@ static void chain_print(const struct chain *chain) printf("\tchain %s {\n", chain->handle.chain); if (chain->flags & CHAIN_F_BASECHAIN) { - printf("\t\t type %s hook %s %u;\n", chain->type, + printf("\t\t type %s hook %s priority %u;\n", chain->type, hooknum2str(chain->handle.family, chain->hooknum), chain->priority); } -- cgit v1.2.3