The branch stable/15 has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=6f92ed52e9de71152957db18b555984d6c0d4831
commit 6f92ed52e9de71152957db18b555984d6c0d4831 Author: Michael Tuexen <[email protected]> AuthorDate: 2025-10-31 18:01:50 +0000 Commit: Michael Tuexen <[email protected]> CommitDate: 2025-11-10 19:28:01 +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 712ff28768dc..3b11a7718cff 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -3154,15 +3154,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 ? ", " : "");
