The branch stable/14 has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=c64b00a1fa8ce7f53ec33949a418adfa6f816ee7
commit c64b00a1fa8ce7f53ec33949a418adfa6f816ee7 Author: Michael Tuexen <[email protected]> AuthorDate: 2025-10-31 18:01:50 +0000 Commit: Michael Tuexen <[email protected]> CommitDate: 2025-11-10 19:28:30 +0000 ddb: whitespace change No functional change intended. Sponsored by: Netflix, Inc. (cherry picked from commit 3adaacad117b23abaf93a5332d538037420e1daa) --- sys/netinet/in_pcb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index 7d665c7d2a73..69b68c77ba84 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -3250,15 +3250,15 @@ db_print_inpflags(int inp_flags) } if (inp_flags & INP_ONESBCAST) { db_printf("%sINP_ONESBCAST", comma ? ", " : ""); - comma = 1; + comma = 1; } if (inp_flags & INP_DROPPED) { db_printf("%sINP_DROPPED", comma ? ", " : ""); - comma = 1; + comma = 1; } if (inp_flags & INP_SOCKREF) { db_printf("%sINP_SOCKREF", comma ? ", " : ""); - comma = 1; + comma = 1; } if (inp_flags & IN6P_RFC2292) { db_printf("%sIN6P_RFC2292", comma ? ", " : "");
