From de7db5d85728fe8d9a33fe968427503c164a32c3 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Wed, 6 Jan 2016 17:46:50 +0100 Subject: [PATCH] tc: m_connmark: Fix help text When specifying a conntrack zone, the 'zone' keyword has to be used before the actual zone index. Signed-off-by: Phil Sutter --- tc/m_connmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tc/m_connmark.c b/tc/m_connmark.c index 41ca4b25..6974c9ba 100644 --- a/tc/m_connmark.c +++ b/tc/m_connmark.c @@ -27,7 +27,7 @@ static void explain(void) { - fprintf(stderr, "Usage: ... connmark [ZONE] [BRANCH] [index ]\n"); + fprintf(stderr, "Usage: ... connmark [zone ZONE] [BRANCH] [index ]\n"); fprintf(stderr, "where :\n" "\tZONE is the conntrack zone\n" "\tBRANCH := reclassify|pipe|drop|continue|ok\n");