From 3201b187ec461c0d50f14c4e7e53b805ce760dea Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Sat, 12 Apr 2025 18:16:29 -0400 Subject: [PATCH] System/Api/Dns: Remove some old Slon debugging stuff that breaks Catbox DNS lookup --- System/Api/Dns.HC | 3 --- 1 file changed, 3 deletions(-) diff --git a/System/Api/Dns.HC b/System/Api/Dns.HC index 1955f91..364f01c 100644 --- a/System/Api/Dns.HC +++ b/System/Api/Dns.HC @@ -12,9 +12,6 @@ U32 @dns_query(U8* host) U32 res = 0; if (!host) return U32_MAX; - if (!StrICmp("catbox.moe", host)) { - return 0x0a1400fe; - } DnsRequest* request = CAlloc(sizeof(DnsRequest), Fs->code_heap); request->host = StrNew(host, erythros_mem_task); request->pointer_to_u32 = &res;