dns.mitm: fix inverted hostname detection

This commit is contained in:
Michael Scire 2021-01-31 09:10:24 -08:00
parent ec655069d0
commit 4357086181

View File

@ -348,7 +348,7 @@ namespace ams::mitm::socket::resolver {
std::scoped_lock lk(g_redirection_lock);
for (const auto &[host, address] : g_redirection_map) {
if (wildcardcmp(host.c_str(), hostname) == 0) {
if (wildcardcmp(host.c_str(), hostname)) {
*out = address;
return true;
}