From aa247f6e385ca7b1643f997d532d1226fa7e406b Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 19 Dec 2025 13:54:15 +0000 Subject: [PATCH] [x509] Correct debug message Signed-off-by: Michael Brown --- src/crypto/x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/x509.c b/src/crypto/x509.c index 5d39a1dd8..1206e4023 100644 --- a/src/crypto/x509.c +++ b/src/crypto/x509.c @@ -232,7 +232,7 @@ static int x509_parse_serial ( struct x509_certificate *cert, cert, strerror ( rc ) ); return rc; } - DBGC2 ( cert, "X509 %p issuer is:\n", cert ); + DBGC2 ( cert, "X509 %p serial is:\n", cert ); DBGC2_HDA ( cert, 0, serial->raw.data, serial->raw.len ); return 0;