git: 8710a12993b0 - main - libdtrace: Fix up one more translator
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 29 Jul 2026 20:00:51 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=8710a12993b0e6be929d45948c61c8d1cb0cce84
commit 8710a12993b0e6be929d45948c61c8d1cb0cce84
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-07-29 18:57:34 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2026-07-29 19:30:37 +0000
libdtrace: Fix up one more translator
Fixes: d8bcb13b79b4 ("libdtrace: Fix up translators after struct in_conninfo changes")
---
cddl/lib/libdtrace/siftr.d | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cddl/lib/libdtrace/siftr.d b/cddl/lib/libdtrace/siftr.d
index bca3a0f0df7f..613745301767 100644
--- a/cddl/lib/libdtrace/siftr.d
+++ b/cddl/lib/libdtrace/siftr.d
@@ -78,11 +78,11 @@ translator siftrinfo_t < struct pkt_node *p > {
rport = p == NULL ? 0 : ntohs(p->fport);
laddr = p == NULL ? "<unknown>" :
p->ipver == INP_IPV4 ?
- inet_ntoa(&p->laddr.id46_addr.ia46_addr4.s_addr) :
+ inet_ntoa(&p->laddr.id4_addr.s_addr) :
inet_ntoa6(&p->laddr.id6_addr);
raddr = p == NULL ? "<unknown>" :
p->ipver == INP_IPV4 ?
- inet_ntoa(&p->faddr.id46_addr.ia46_addr4.s_addr) :
+ inet_ntoa(&p->faddr.id4_addr.s_addr) :
inet_ntoa6(&p->faddr.id6_addr);
snd_cwnd = p == NULL ? 0 : p->snd_cwnd;
snd_wnd = p == NULL ? 0 : p->snd_wnd;