mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-01-06 16:53:59 +00:00
fixed bug caused due to server domain not set for allowed and blocked zone objects.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user