git: 4ee0ddae1dab - main - sockstat: fix column length for PROTO

From: Michael Tuexen <tuexen_at_FreeBSD.org>
Date: Mon, 20 Oct 2025 14:30:28 UTC
The branch main has been updated by tuexen:

URL: https://cgit.FreeBSD.org/src/commit/?id=4ee0ddae1dab05dd8e3f273d861043c3e2919f23

commit 4ee0ddae1dab05dd8e3f273d861043c3e2919f23
Author:     Michael Tuexen <tuexen@FreeBSD.org>
AuthorDate: 2025-10-20 14:26:52 +0000
Commit:     Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2025-10-20 14:26:52 +0000

    sockstat: fix column length for PROTO
    
    The computation of the length was not taking into account that IPv6
    endpoints, which are not IPv6 only, have a suffix of 46.
    For UDP and TCP this bug was not relevant, since tcp46 and udp46
    has the same length as PROTO, but sctp46 is longer. Upcoming
    udplite support will also be affected.
    
    Reviewed by:            asomers
    MFC after:              3 days
    Differential Revision:  https://reviews.freebsd.org/D53212
---
 usr.bin/sockstat/main.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/usr.bin/sockstat/main.c b/usr.bin/sockstat/main.c
index d1ea6b1bc958..abb73acafc2f 100644
--- a/usr.bin/sockstat/main.c
+++ b/usr.bin/sockstat/main.c
@@ -1196,7 +1196,9 @@ calculate_sock_column_widths(struct col_widths *cw, struct sock *s)
 	first = true;
 
 	len = strlen(s->protoname);
-	if (s->vflag & (INP_IPV4 | INP_IPV6))
+	if (s->vflag & INP_IPV4)
+		len += 1;
+	if (s->vflag & INP_IPV6)
 		len += 1;
 	cw->proto = MAX(cw->proto, len);