diff mbox

[iproute] tc: m_connmark: Fix help text

Message ID 1452098810-4153-1-git-send-email-phil@nwl.cc
State Accepted, archived
Delegated to: stephen hemminger
Headers show

Commit Message

Phil Sutter Jan. 6, 2016, 4:46 p.m. UTC
When specifying a conntrack zone, the 'zone' keyword has to be used
before the actual zone index.

Signed-off-by: Phil Sutter <phil@nwl.cc>
---
 tc/m_connmark.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/tc/m_connmark.c b/tc/m_connmark.c
index 41ca4b25d4e90..6974c9ba6d16b 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 <INDEX>]\n");
+	fprintf(stderr, "Usage: ... connmark [zone ZONE] [BRANCH] [index <INDEX>]\n");
 	fprintf(stderr, "where :\n"
 		"\tZONE is the conntrack zone\n"
 		"\tBRANCH := reclassify|pipe|drop|continue|ok\n");