Created attachment 239954 [details] This diff fixes the tcpcb ddb printing issue. Hello, In DDB, the "show tcpcb [addr]" command prints the tcp control block states. However the snd_nxt field is not being printed properly in hex format. Current print -> snd_nxt: x012345678 Correct print -> snd_nxt: 0x12345678 The attached patch fixes this issue.
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=fb8f221aebd0628e201d3d941ab6574eb27078fd commit fb8f221aebd0628e201d3d941ab6574eb27078fd Author: Maxim Konovalov <maxim@FreeBSD.org> AuthorDate: 2023-02-06 20:41:05 +0000 Commit: Maxim Konovalov <maxim@FreeBSD.org> CommitDate: 2023-02-06 20:41:05 +0000 db_printf: fix a typo PR: 269377 sys/netinet/tcp_usrreq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)