From 2f6b9dac2644dc7c5ac3af9040580d85bb07e422 Mon Sep 17 00:00:00 2001 From: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Date: Thu, 11 Sep 2025 15:47:38 -0600 Subject: [PATCH] Bugfix/dns recursion (#3023) * fix dns recursion and localhost * additional fix --- core/startos/src/net/dns.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/startos/src/net/dns.rs b/core/startos/src/net/dns.rs index 930f903a9..c66387da8 100644 --- a/core/startos/src/net/dns.rs +++ b/core/startos/src/net/dns.rs @@ -304,7 +304,7 @@ impl Resolver { return Some(res); } } - if name.zone_of(&*STARTOS) || name.zone_of(&*EMBASSY) { + if STARTOS.zone_of(name) || EMBASSY.zone_of(name) { let Ok(pkg) = name .trim_to(2) .iter()