From 850f0a56b6ad625d6c5d8ba28ec4f55ec02ff2a7 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Thu, 28 Jul 2016 20:03:53 +0200 Subject: src: add 'to' for snat and dnat This is extra syntaxtic sugar to get this consistent with other statements such as redirect, masquerade, dup and fwd that indicates where to go. Existing syntax is still preserved, but the listing shows the one including 'to'. Signed-off-by: Pablo Neira Ayuso --- src/statement.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/statement.c') diff --git a/src/statement.c b/src/statement.c index 7778a955..ccc16bb7 100644 --- a/src/statement.c +++ b/src/statement.c @@ -396,7 +396,7 @@ static void nat_stmt_print(const struct stmt *stmt) [NFT_NAT_DNAT] = "dnat", }; - printf("%s ", nat_types[stmt->nat.type]); + printf("%s to ", nat_types[stmt->nat.type]); if (stmt->nat.addr) expr_print(stmt->nat.addr); if (stmt->nat.proto) { -- cgit v1.2.3