From 35d26cb08f866cac2b01e96760e40440911a1497 Mon Sep 17 00:00:00 2001 From: d00f Date: Fri, 14 Aug 2026 15:27:01 +0200 Subject: [PATCH] stp: name the status subcommand in the usage line "stp status" has always worked, but the line printed on a bad command listed only on and off, so the one subcommand that shows what the bridge thinks was the one you had to already know about. --- rtl837x_stp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl837x_stp.c b/rtl837x_stp.c index 1416553..04afaa6 100644 --- a/rtl837x_stp.c +++ b/rtl837x_stp.c @@ -907,5 +907,5 @@ void stp_parse(void) __banked __reentrant } return; err: - print_string("Error: stp on|off | prio <0-15> | hello <1-10> | maxage <6-40> | fwd <4-30> | txhold <1-10> | version rstp|stp | port <1-9> on|off|edge|cost|prio|guard|filter ...\n"); + print_string("Error: stp on|off|status | prio <0-15> | hello <1-10> | maxage <6-40> | fwd <4-30> | txhold <1-10> | version rstp|stp | port <1-9> on|off|edge|cost|prio|guard|filter ...\n"); }