From 35ea9534d425d762692fa7dbbe9ecbb34a27e216 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 10 Sep 2018 16:18:10 +0200 Subject: src: Fix literal check for inet_service type Since literal option is supposed to be a level, matching for equality is not correct here since the level may be higher than NFT_LITERAL_PORT. This fixes for ports being printed numerically if '-l' option was given twice. Fixes: b0f6a45b25dd1 ("src: add --literal option") Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- src/datatype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/datatype.c') diff --git a/src/datatype.c b/src/datatype.c index bc3df214..50af3df0 100644 --- a/src/datatype.c +++ b/src/datatype.c @@ -648,7 +648,7 @@ static void inet_service_print(const struct expr *expr, struct output_ctx *octx) void inet_service_type_print(const struct expr *expr, struct output_ctx *octx) { - if (octx->literal == NFT_LITERAL_PORT) { + if (octx->literal >= NFT_LITERAL_PORT) { inet_service_print(expr, octx); return; } -- cgit v1.2.3