commit 28dd9c19a1fa618105238a3302f272e2aee7918a Author: Jamal Hadi Salim Date: Tue Oct 14 07:32:51 2009 -0400 skbedit: Fix help message Currently the help text implies you can either pass queue mapping or priority. Truth is you can pass both Signed-off-by: Jamal Hadi Salim diff --git a/tc/m_skbedit.c b/tc/m_skbedit.c index 9044353..ecb1f2d 100644 --- a/tc/m_skbedit.c +++ b/tc/m_skbedit.c @@ -31,8 +31,9 @@ static void explain(void) { - fprintf(stderr, "Usage: ... skbedit " - "queue_mapping QUEUE_MAPPING | priority PRIORITY \n" + fprintf(stderr, "Usage: ... skbedit <[QM] [PM]>\n" + "QM = queue_mapping QUEUE_MAPPING\n" + "PM = priority PRIORITY \n" "QUEUE_MAPPING = device transmit queue to use\n" "PRIORITY = classID to assign to priority field\n"); }