Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Feb 2023 20:41:58 GMT
From:      Maxim Konovalov <maxim@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: fb8f221aebd0 - main - db_printf: fix a typo
Message-ID:  <202302062041.316KfwvH019979@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by maxim:

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(-)

diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c
index 83804ac3525e..2ae1c4b89c8e 100644
--- a/sys/netinet/tcp_usrreq.c
+++ b/sys/netinet/tcp_usrreq.c
@@ -2991,7 +2991,7 @@ db_print_tcpcb(struct tcpcb *tp, const char *name, int indent)
 	db_printf(")\n");
 
 	db_print_indent(indent);
-	db_printf("snd_una: 0x%08x   snd_max: 0x%08x   snd_nxt: x0%08x\n",
+	db_printf("snd_una: 0x%08x   snd_max: 0x%08x   snd_nxt: 0x%08x\n",
 	    tp->snd_una, tp->snd_max, tp->snd_nxt);
 
 	db_print_indent(indent);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302062041.316KfwvH019979>