- Fix verbose EDE error printout.

This commit is contained in:
W.C.A. Wijngaards 2022-07-11 13:13:51 +02:00
parent 886ffcc155
commit 7696398231
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
11 July 2022: Wouter
- Fix verbose EDE error printout.
4 July 2022: George
- Fix bug introduced in 'improve val_sigcrypt.c::algo_needs_missing for
one loop pass'.

View File

@ -1015,7 +1015,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);
verbose(VERB_ALGO, "attached EDE code: %d with message: %s", code, (txt?txt:"\"\""));
*prevp = opt;
return 1;
}