From: Phil Sutter Date: Wed, 6 Jan 2016 16:46:50 +0000 (+0100) Subject: tc: m_connmark: Fix help text X-Git-Tag: v4.4.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de7db5d85728fe8d9a33fe968427503c164a32c3;p=thirdparty%2Fiproute2.git 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 --- diff --git a/tc/m_connmark.c b/tc/m_connmark.c index 41ca4b25d..6974c9ba6 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");