5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-02-22 05:26:53 +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()
})
m.log.Debugln("Stopped multicast module")
return nil
return err
}
func (m *Multicast) _stop() error {