dns.mitm: fix inverted hostname detection

This commit is contained in:
Michael Scire 2021-01-31 09:10:24 -08:00 committed by SciresM
parent 4ce2a6deb3
commit 97aa209c43

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;
}