mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix verbose EDE error printout.
This commit is contained in:
parent
886ffcc155
commit
7696398231
2 changed files with 4 additions and 1 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
11 July 2022: Wouter
|
||||||
|
- Fix verbose EDE error printout.
|
||||||
|
|
||||||
4 July 2022: George
|
4 July 2022: George
|
||||||
- Fix bug introduced in 'improve val_sigcrypt.c::algo_needs_missing for
|
- Fix bug introduced in 'improve val_sigcrypt.c::algo_needs_missing for
|
||||||
one loop pass'.
|
one loop pass'.
|
||||||
|
|
|
||||||
|
|
@ -1015,7 +1015,7 @@ int edns_opt_list_append_ede(struct edns_option** list, struct regional* region,
|
||||||
prevp = list;
|
prevp = list;
|
||||||
while(*prevp != NULL)
|
while(*prevp != NULL)
|
||||||
prevp = &((*prevp)->next);
|
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;
|
*prevp = opt;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue