diff options
Diffstat (limited to 'core/dnsserver/server.go')
-rw-r--r-- | core/dnsserver/server.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/dnsserver/server.go b/core/dnsserver/server.go index c55f4db5f..fe509a21b 100644 --- a/core/dnsserver/server.go +++ b/core/dnsserver/server.go @@ -346,9 +346,9 @@ type Key struct{} // EnableChaos is a map with plugin names for which we should open CH class queries as we block these by default. var EnableChaos = map[string]struct{}{ - "chaos": struct{}{}, - "forward": struct{}{}, - "proxy": struct{}{}, + "chaos": {}, + "forward": {}, + "proxy": {}, } // Quiet mode will not show any informative output on initialization. |