Skip to content
Snippets Groups Projects
Commit 637b2587 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

kdig: add config.edns initialization

parent 7c3d48c9
No related branches found
No related tags found
1 merge request!115IDN support to Knot Utils
......@@ -790,6 +790,7 @@ query_t* query_create(const char *owner, const query_t *conf)
query->idn = false;
#endif
query->nsid = false;
query->edns = -1;
} else {
if (conf->local != NULL) {
query->local = srv_info_create(conf->local->name,
......@@ -817,6 +818,7 @@ query_t* query_create(const char *owner, const query_t *conf)
query->style = conf->style;
query->idn = conf->idn;
query->nsid = conf->nsid;
query->edns = conf->edns;
if (knot_copy_key_params(&conf->key_params, &query->key_params)
!= KNOT_EOK) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment