summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/payload-expression.txt2
-rw-r--r--src/statement.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/payload-expression.txt b/doc/payload-expression.txt
index a338dcf0..bc31e81c 100644
--- a/doc/payload-expression.txt
+++ b/doc/payload-expression.txt
@@ -699,7 +699,7 @@ is true for the *zone*, if a direction is given, the zone is only matched if the
zone id is tied to the given direction. +
[verse]
-*ct* {*state* | *direction* | *status* | *mark* | *expiration* | *helper* | *label*}
+*ct* {*state* | *direction* | *status* | *mark* | *expiration* | *helper* | *label* | *count*}
*ct* [*original* | *reply*] {*l3proto* | *protocol* | *bytes* | *packets* | *avgpkt* | *zone* | *id*}
*ct* {*original* | *reply*} {*proto-src* | *proto-dst*}
*ct* {*original* | *reply*} {*ip* | *ip6*} {*saddr* | *daddr*}
diff --git a/src/statement.c b/src/statement.c
index f7f1c0c4..7537c07f 100644
--- a/src/statement.c
+++ b/src/statement.c
@@ -201,7 +201,7 @@ struct stmt *meter_stmt_alloc(const struct location *loc)
static void connlimit_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
{
- nft_print(octx, "ct count %s%u ",
+ nft_print(octx, "ct count %s%u",
stmt->connlimit.flags ? "over " : "", stmt->connlimit.count);
}