From: Florian Westphal Date: Fri, 13 Sep 2013 14:44:48 +0000 (+0200) Subject: log: s/threshold/queue-threshold/ X-Git-Tag: v0.099~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de286210a1bac154cc906255803495cf56d9520d;p=thirdparty%2Fnftables.git log: s/threshold/queue-threshold/ on input we expect "queue-threshold" token, so use the same name when printing the output. Signed-off-by: Florian Westphal Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/statement.c b/src/statement.c index 1a3ea3c1d..69db48f61 100644 --- a/src/statement.c +++ b/src/statement.c @@ -122,7 +122,7 @@ static void log_stmt_print(const struct stmt *stmt) if (stmt->log.snaplen) printf(" snaplen %u", stmt->log.snaplen); if (stmt->log.qthreshold) - printf(" threshold %u", stmt->log.qthreshold); + printf(" queue-threshold %u", stmt->log.qthreshold); } static void log_stmt_destroy(struct stmt *stmt)