diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-20 23:43:51 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-20 23:46:22 +0000 |
commit | 223c6b0796cf0f04042c48103fe22ede3ea6c1a6 (patch) | |
tree | 3c1801a26737c7cf6d614f91e49a1303f5da4712 /src/common/dns_utils.cpp | |
parent | Merge pull request #5201 (diff) | |
download | monero-223c6b0796cf0f04042c48103fe22ede3ea6c1a6.tar.xz |
dns_utils: really add default DNSSEC servers on failure
Coverity 196597
Diffstat (limited to 'src/common/dns_utils.cpp')
-rw-r--r-- | src/common/dns_utils.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp index 711a8ba30..a341a8c81 100644 --- a/src/common/dns_utils.cpp +++ b/src/common/dns_utils.cpp @@ -293,9 +293,8 @@ DNSResolver::DNSResolver() : m_data(new DNSResolverData()) ub_ctx_delete(m_data->m_ub_context); m_data->m_ub_context = ub_ctx_create(); add_anchors(m_data->m_ub_context); - dns_public_addr = tools::dns_utils::parse_dns_public(DNS_PUBLIC); - for (const auto &ip: dns_public_addr) - ub_ctx_set_fwd(m_data->m_ub_context, string_copy(ip.c_str())); + for (const auto &ip: DEFAULT_DNS_PUBLIC_ADDR) + ub_ctx_set_fwd(m_data->m_ub_context, string_copy(ip)); ub_ctx_set_option(m_data->m_ub_context, string_copy("do-udp:"), string_copy("no")); ub_ctx_set_option(m_data->m_ub_context, string_copy("do-tcp:"), string_copy("yes")); } |