- Fix in respip addrtree selection. Absence of addr_tree_init_parents() call

made it impossible to go up the tree when the matching netmask is too
   specific.
This commit is contained in:
Ralph Dolmans 2019-07-09 14:58:36 +02:00
parent d323e1bda8
commit d5ebc63add
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
9 July 2019: Ralph
- Fix in respip addrtree selection. Absence of addr_tree_init_parents()
call made it impossible to go up the tree when the matching netmask is
too specific.
5 July 2019: Ralph
- Fix for possible assertion failure when answering respip CNAME from
cache.

View File

@ -361,6 +361,7 @@ respip_set_apply_cfg(struct respip_set* set, char* const* tagname, int num_tags,
free(pd);
pd = np;
}
addr_tree_init_parents(&set->ip_tree);
return 1;
}