From 4f29bfce4bcab96231ba718c5c9b4b61d7126557 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 15 Jun 2024 15:05:17 +0530 Subject: [PATCH] minor changes. --- DnsServerCore/Dns/Zones/AuthZoneInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DnsServerCore/Dns/Zones/AuthZoneInfo.cs b/DnsServerCore/Dns/Zones/AuthZoneInfo.cs index bd135dca..0f3d9645 100644 --- a/DnsServerCore/Dns/Zones/AuthZoneInfo.cs +++ b/DnsServerCore/Dns/Zones/AuthZoneInfo.cs @@ -797,7 +797,7 @@ namespace DnsServerCore.Dns.Zones public override int GetHashCode() { - return _name.GetHashCode(); + return HashCode.Combine(_name); } public override string ToString()