]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Too many quotes for the EDE message debug printout. branch-1.24.0 release-1.24.0
authorYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Wed, 17 Sep 2025 09:27:16 +0000 (11:27 +0200)
committerYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Wed, 17 Sep 2025 09:27:16 +0000 (11:27 +0200)
doc/Changelog
util/data/msgreply.c

index 264a097d15771ea40b91ce9d886658c39ec7c87f..c78cdff3b9bf9940d3e21c5b18a6ce1eda93eb59 100644 (file)
@@ -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.
 
index ef9b66d4ac1eb709c583af6bdbf35c9d8835ae02..02e1230e96e7d664ffefb730c44f0a4da01ab525 100644 (file)
@@ -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;
 }