From 2e5bd3f8623ed8e76112284943003350aaad34ec Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 7 Aug 2021 12:28:30 +0530 Subject: [PATCH] minor changes --- DnsServerCore/Dns/ResourceRecords/DnsResourceRecordInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DnsServerCore/Dns/ResourceRecords/DnsResourceRecordInfo.cs b/DnsServerCore/Dns/ResourceRecords/DnsResourceRecordInfo.cs index 03affd9d..2b8e1e58 100644 --- a/DnsServerCore/Dns/ResourceRecords/DnsResourceRecordInfo.cs +++ b/DnsServerCore/Dns/ResourceRecords/DnsResourceRecordInfo.cs @@ -242,7 +242,7 @@ namespace DnsServerCore.Dns.ResourceRecords break; default: - throw new NotSupportedException("Zone transfer protocol not supported: " + value.ToString()); + throw new NotSupportedException("Zone transfer protocol is not supported: XFR-over-" + value.ToString().ToUpper()); } } }