git: 09def8d654e7 - stable/14 - ipfw: add missing initializer for 'limit' table value
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 17 Feb 2025 07:35:17 UTC
The branch stable/14 has been updated by ae:
URL: https://cgit.FreeBSD.org/src/commit/?id=09def8d654e7be0454925ab57c4e6e1d1d173911
commit 09def8d654e7be0454925ab57c4e6e1d1d173911
Author: Andrey V. Elsukov <ae@FreeBSD.org>
AuthorDate: 2025-02-10 07:58:23 +0000
Commit: Andrey V. Elsukov <ae@FreeBSD.org>
CommitDate: 2025-02-17 07:33:59 +0000
ipfw: add missing initializer for 'limit' table value
PR: 284691
(cherry picked from commit 95ab7b3223c08cf48ccf764815523ea995a7ea0e)
---
sys/netpfil/ipfw/ip_fw_table_value.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/netpfil/ipfw/ip_fw_table_value.c b/sys/netpfil/ipfw/ip_fw_table_value.c
index 1d4e1db2dcbb..431707ae5d74 100644
--- a/sys/netpfil/ipfw/ip_fw_table_value.c
+++ b/sys/netpfil/ipfw/ip_fw_table_value.c
@@ -112,6 +112,7 @@ mask_table_value(struct table_value *src, struct table_value *dst,
_MCPY(netgraph, IPFW_VTYPE_NETGRAPH);
_MCPY(fib, IPFW_VTYPE_FIB);
_MCPY(nat, IPFW_VTYPE_NAT);
+ _MCPY(limit, IPFW_VTYPE_LIMIT);
_MCPY(mark, IPFW_VTYPE_MARK);
_MCPY(dscp, IPFW_VTYPE_DSCP);
_MCPY(nh4, IPFW_VTYPE_NH4);