git: 43bb3553f1d5 - stable/13 - if_enc(4): Prefer the boolean form when calling bpf_peers_present()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 17 Jun 2024 04:28:00 UTC
The branch stable/13 has been updated by zlei:
URL: https://cgit.FreeBSD.org/src/commit/?id=43bb3553f1d523eec20d4078bf9bdaa222323940
commit 43bb3553f1d523eec20d4078bf9bdaa222323940
Author: Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2024-06-06 04:20:26 +0000
Commit: Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2024-06-17 04:10:11 +0000
if_enc(4): Prefer the boolean form when calling bpf_peers_present()
No functional change intended.
MFC after: 1 week
(cherry picked from commit 215a18d502cba2cf57251e82a84484219f2c432a)
(cherry picked from commit a674f992a135728648908874034408d43b3d1903)
---
sys/net/if_enc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/net/if_enc.c b/sys/net/if_enc.c
index cf7f763c33c6..752fbf207fb4 100644
--- a/sys/net/if_enc.c
+++ b/sys/net/if_enc.c
@@ -216,7 +216,7 @@ enc_bpftap(struct ifnet *ifp, struct mbuf *m, const struct secasvar *sav,
else if (hhook_type == HHOOK_TYPE_IPSEC_OUT &&
(enc & V_bpf_mask_out) == 0)
return;
- if (bpf_peers_present(ifp->if_bpf) == 0)
+ if (!bpf_peers_present(ifp->if_bpf))
return;
hdr.af = af;
hdr.spi = sav->spi;