Simplify two lines into one line.
This commit is contained in:
parent
be4b65fdca
commit
09fb539875
|
@ -178,8 +178,7 @@ func (s *Server) Start(config *ServerConfig) error {
|
||||||
|
|
||||||
if s.dnsFilter == nil {
|
if s.dnsFilter == nil {
|
||||||
log.Printf("Creating dnsfilter")
|
log.Printf("Creating dnsfilter")
|
||||||
dnsFilterConfig := &config.Config
|
s.dnsFilter = dnsfilter.New(&s.Config)
|
||||||
s.dnsFilter = dnsfilter.New(dnsFilterConfig)
|
|
||||||
// add rules only if they are enabled
|
// add rules only if they are enabled
|
||||||
if s.FilteringEnabled {
|
if s.FilteringEnabled {
|
||||||
s.dnsFilter.AddRules(s.Filters)
|
s.dnsFilter.AddRules(s.Filters)
|
||||||
|
|
Loading…
Reference in New Issue