5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-22 18:50:27 +00:00

Fix return value in Multicast.Stop()

This commit is contained in:
Anatolii Kurotych 2019-11-30 16:05:44 +02:00
parent 287d3cf9c4
commit 4159ccb893

View File

@ -112,7 +112,7 @@ func (m *Multicast) Stop() error {
err = m._stop() err = m._stop()
}) })
m.log.Debugln("Stopped multicast module") m.log.Debugln("Stopped multicast module")
return nil return err
} }
func (m *Multicast) _stop() error { func (m *Multicast) _stop() error {