diff options
Diffstat (limited to 'src/statement.c')
-rw-r--r-- | src/statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |