From: Yorgos Thessalonikefs Date: Wed, 17 Sep 2025 09:27:16 +0000 (+0200) Subject: - Too many quotes for the EDE message debug printout. X-Git-Tag: release-1.24.0^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Fbranch-1.24.0;p=thirdparty%2Funbound.git - Too many quotes for the EDE message debug printout. --- 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; }