- Too many quotes for the EDE message debug printout.

This commit is contained in:
Yorgos Thessalonikefs
2025-09-17 11:27:16 +02:00
parent 713b5db537
commit 2dd821c257
2 changed files with 4 additions and 1 deletions
+3
View 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.
+1 -1
View 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;
}