Correct IPv6 MLD group state string table

MLD_REPORTING_MEMBER was missing

MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D36311
This commit is contained in:
Sébastien BINI 2022-09-16 09:58:52 -04:00 committed by Ed Maste
parent 6d9e911fba
commit 64cce803c4

View File

@ -2854,6 +2854,7 @@ in6m_mode_str(const int mode)
static const char *in6m_statestrs[] = {
"not-member",
"silent",
"reporting",
"idle",
"lazy",
"sleeping",
@ -2862,6 +2863,8 @@ static const char *in6m_statestrs[] = {
"sg-query-pending",
"leaving"
};
_Static_assert(nitems(in6m_statestrs) ==
MLD_LEAVING_MEMBER - MLD_NOT_MEMBER + 1, "Missing MLD group state");
static const char *
in6m_state_str(const int state)