diff --git a/include/ircd/net/dns_resolver.h b/include/ircd/net/dns_resolver.h index 284fd66dc..00f4caf85 100644 --- a/include/ircd/net/dns_resolver.h +++ b/include/ircd/net/dns_resolver.h @@ -132,11 +132,11 @@ ircd::net::dns::tag::tag(const hostport &hp, { this->hp.host = { - hostbuf, copy(hostbuf, hp.host) + tolower(hostbuf, hp.host) }; this->hp.service = { - servicebuf, copy(servicebuf, hp.service) + tolower(servicebuf, hp.service) }; }