diff options
Diffstat (limited to 'sys/net/pf.c')
-rw-r--r-- | sys/net/pf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c index fb278db3b14..378bafc2190 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.1202 2024/07/12 09:25:27 bluhm Exp $ */ +/* $OpenBSD: pf.c,v 1.1203 2024/07/14 18:53:39 bluhm Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -7988,7 +7988,7 @@ done: if (pd.dir == PF_IN) { int flags = IPV6_REDIRECT; - switch (ip6_forwarding) { + switch (atomic_load_int(&ip6_forwarding)) { case 2: SET(flags, IPV6_FORWARDING_IPSEC); /* FALLTHROUGH */ |