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"
#define STP_PROTOS \
"stp" \
"-" \
"stp", \
"-", \
"rstp"
#define STP_ROLES \
"disabled" \
"root" \
"designated" \
"alternate" \
"disabled", \
"root", \
"designated", \
"alternate", \
"backup"
#define PV2ID(pv, epri, eaddr) do { \