mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Merge pull request #2587 from GoNZooo/g.fix-early-exit-on-no-hosts
fix(dns): don't exit early on no hosts in hosts file
This commit is contained in:
@@ -44,9 +44,6 @@ _get_dns_records_os :: proc(hostname: string, type: DNS_Record_Type, allocator :
|
|||||||
if !hosts_ok {
|
if !hosts_ok {
|
||||||
return nil, .Invalid_Hosts_Config_Error
|
return nil, .Invalid_Hosts_Config_Error
|
||||||
}
|
}
|
||||||
if len(hosts) == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
host_overrides := make([dynamic]DNS_Record)
|
host_overrides := make([dynamic]DNS_Record)
|
||||||
for host in hosts {
|
for host in hosts {
|
||||||
@@ -80,4 +77,4 @@ _get_dns_records_os :: proc(hostname: string, type: DNS_Record_Type, allocator :
|
|||||||
}
|
}
|
||||||
|
|
||||||
return get_dns_records_from_nameservers(hostname, type, name_servers, host_overrides[:])
|
return get_dns_records_from_nameservers(hostname, type, name_servers, host_overrides[:])
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user