From 2dd821c257ae04ac251320efeb05806092198c01 Mon Sep 17 00:00:00 2001 From: Yorgos Thessalonikefs Date: Wed, 17 Sep 2025 11:27:16 +0200 Subject: [PATCH] - Too many quotes for the EDE message debug printout. --- doc/Changelog | 3 +++ util/data/msgreply.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Changelog b/doc/Changelog index 264a097d1..c78cdff3b 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +17 September 2025: Yorgos + - Too many quotes for the EDE message debug printout. + 15 September 2025: Yorgos - Small debug output improvement when attaching an EDE. diff --git a/util/data/msgreply.c b/util/data/msgreply.c index ef9b66d4a..02e1230e9 100644 --- a/util/data/msgreply.c +++ b/util/data/msgreply.c @@ -1129,7 +1129,7 @@ int edns_opt_list_append_ede(struct edns_option** list, struct regional* region, prevp = list; while(*prevp != NULL) prevp = &((*prevp)->next); - verbose(VERB_ALGO, "attached EDE code: %d with message: '%s'", code, (txt?txt:"\"\"")); + verbose(VERB_ALGO, "attached EDE code: %d with message: '%s'", code, (txt?txt:"")); *prevp = opt; return 1; } -- 2.47.3