fixed bug caused due to server domain not set for allowed and blocked zone objects.

This commit is contained in:
Shreyas Zare
2019-01-19 20:33:04 +05:30
parent d7b75d5257
commit dc18202b21

View File

@@ -916,7 +916,12 @@ namespace DnsServerCore
public string ServerDomain
{
get { return _authoritativeZoneRoot.ServerDomain; }
set { _authoritativeZoneRoot.ServerDomain = value; }
set
{
_authoritativeZoneRoot.ServerDomain = value;
_allowedZoneRoot.ServerDomain = value;
_blockedZoneRoot.ServerDomain = value;
}
}
public Zone AuthoritativeZoneRoot