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

modules/net_dns_resolver: Case transform to lower in make_query().

This commit is contained in:
Jason Volk 2019-08-02 22:03:30 -07:00
parent d9a770ba3e
commit 0117838145

View file

@ -193,7 +193,7 @@ ircd::net::dns::resolver::make_query(const mutable_buffer &buf,
break;
default:
hoststr = host(tag.hp);
hoststr = tolower(hostbuf, host(tag.hp));
break;
}