aboutsummaryrefslogtreecommitdiff
path: root/plugin/file/zone.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/file/zone.go')
-rw-r--r--plugin/file/zone.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/file/zone.go b/plugin/file/zone.go
index 3447a942c..da294ed45 100644
--- a/plugin/file/zone.go
+++ b/plugin/file/zone.go
@@ -29,7 +29,7 @@ type Zone struct {
NoReload bool
reloadMu sync.RWMutex
- ReloadShutdown chan bool
+ reloadShutdown chan bool
Upstream upstream.Upstream // Upstream for looking up names during the resolution process
}
@@ -49,7 +49,7 @@ func NewZone(name, file string) *Zone {
file: path.Clean(file),
Tree: &tree.Tree{},
Expired: new(bool),
- ReloadShutdown: make(chan bool),
+ reloadShutdown: make(chan bool),
}
*z.Expired = false