From: Amir Vadai Date: Sun, 14 May 2017 08:17:43 +0000 (+0300) Subject: pedit: Fix a typo in warning X-Git-Tag: v4.12.0~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=290cdc058d8bbcae3cfefafe83d8263e02ac5a6f;p=thirdparty%2Fiproute2.git pedit: Fix a typo in warning 'ex' attribute should be placed after 'action pedit' and not after 'munge'. Signed-off-by: Amir Vadai --- diff --git a/tc/m_pedit.c b/tc/m_pedit.c index 6498dd91b..7ef2acc52 100644 --- a/tc/m_pedit.c +++ b/tc/m_pedit.c @@ -146,7 +146,7 @@ int pack_key(struct m_pedit_sel *_sel, struct m_pedit_key *tkey) if (tkey->htype != TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK || tkey->cmd != TCA_PEDIT_KEY_EX_CMD_SET) { fprintf(stderr, - "Munge parameters not supported. Use 'munge ex'.\n"); + "Munge parameters not supported. Use 'pedit ex munge ...'.\n"); return -1; } }