mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-05 14:29:37 -05:00
- Fix reported validation error in out of memory condition.
git-svn-id: file:///svn/unbound/trunk@2237 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
3b8cc374e7
commit
aac3c03f72
2 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
- Algorithm rollover operational reality intrudes, for trust-anchor,
|
||||
5011-store, and DLV-anchor if one key matches it's good enough.
|
||||
- iana portlist updated.
|
||||
- Fix reported validation error in out of memory condition.
|
||||
|
||||
15 September 2010: Wouter
|
||||
- Abide RFC5155 section 9.2: no AD flag for replies with NSEC3 optout.
|
||||
|
|
|
|||
|
|
@ -589,7 +589,7 @@ void algo_needs_reason(struct module_env* env, int alg, char** reason, char* s)
|
|||
(unsigned)alg);
|
||||
*reason = regional_strdup(env->scratch, buf);
|
||||
if(!*reason)
|
||||
*reason = "%s with all algorithms";
|
||||
*reason = s;
|
||||
}
|
||||
|
||||
enum sec_status
|
||||
|
|
|
|||
Loading…
Reference in a new issue