1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Add missing break.

Pointy hat to:	glebius
This commit is contained in:
Gleb Smirnoff 2012-09-20 03:09:58 +00:00
parent d05b576d61
commit 7b11548469
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240723

View File

@ -1743,6 +1743,7 @@ pf_hashsrc(struct pf_addr *addr, sa_family_t af)
break;
case AF_INET6:
h = ADDR_HASH(addr->v6.__u6_addr.__u6_addr32[3]);
break;
default:
panic("%s: unknown address family %u", __func__, af);
}