bridge: fix STP roles and protos strings

Add the missing commas that got lost in e5539fb618.

PR:		252532
Reviewd by:	kp@, donner@, freqlabs@
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D28425
This commit is contained in:
Jonah Caplan 2021-01-30 14:54:09 +01:00 committed by Kristof Provost
parent 05985a7f80
commit 88be0e1120

View File

@ -278,15 +278,15 @@ struct ifbpstpconf {
"discarding" "discarding"
#define STP_PROTOS \ #define STP_PROTOS \
"stp" \ "stp", \
"-" \ "-", \
"rstp" "rstp"
#define STP_ROLES \ #define STP_ROLES \
"disabled" \ "disabled", \
"root" \ "root", \
"designated" \ "designated", \
"alternate" \ "alternate", \
"backup" "backup"
#define PV2ID(pv, epri, eaddr) do { \ #define PV2ID(pv, epri, eaddr) do { \