- Fix uninit value in dump_infra print.

git-svn-id: file:///svn/unbound/trunk@2320 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2010-10-29 10:20:40 +00:00
parent 1eb0eea744
commit ba340cd07a
2 changed files with 4 additions and 1 deletions

View file

@ -1534,7 +1534,7 @@ dump_infra_lame(struct lruhash_entry* e, void* arg)
struct infra_lame_key* k = (struct infra_lame_key*)e->key;
struct infra_lame_data* d = (struct infra_lame_data*)e->data;
ldns_rdf* rdf;
size_t pos;
size_t pos = 0;
char* nm;
/* skip expired */
if(d->ttl < a->now) {

View file

@ -1,3 +1,6 @@
27 October 2010: Wouter
- Fix uninit value in dump_infra print.
26 October 2010: Wouter
- dump_infra and flush_infra commands for unbound-control.
- no timeout backoff if meanwhile a query succeeded.