Skip to content

Commit

Permalink
dns/client: use info for getaddrinfo_h err (#950)
Browse files Browse the repository at this point in the history
It's not fatal if getaddrinfo_h returns err, like not available 'AAAA'
record.
  • Loading branch information
sreimers authored Sep 12, 2023
1 parent baa8427 commit 43f34ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dns/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ static void getaddrinfo_h(int err, void *arg)
cache ? "(caching)" : "");

if (err) {
DEBUG_WARNING("getaddrinfo_h: err %m\n", err);
DEBUG_INFO("getaddrinfo_h: err %m\n", err);
}
else {
struct le *le;
Expand Down

0 comments on commit 43f34ef

Please sign in to comment.