0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02:00

modules/s_dns_resolver: Fix missing fmtstr argument.

This commit is contained in:
Jason Volk 2018-10-23 11:18:45 -07:00
parent bfa76efbc1
commit 68a136c85d

View file

@ -82,7 +82,8 @@ ircd::net::dns::resolver_call(const hostport &hp,
if(unlikely(!resolver))
throw error
{
"Cannot resolve '%s': resolver unavailable"
"Cannot resolve '%s': resolver unavailable.",
host(hp)
};
(*resolver)(hp, opts, std::move(cb));