Address some comments

This commit is contained in:
Neil Alexander 2019-01-15 08:44:33 +00:00
parent 3bf53796a7
commit 39567bed83
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
2 changed files with 7 additions and 8 deletions

View file

@ -38,14 +38,12 @@ func (c *cryptokey) init(core *Core) {
c.reconfigure = make(chan chan error, 1)
go func() {
for {
select {
case e := <-c.reconfigure:
var err error
c.core.router.doAdmin(func() {
err = c.core.router.cryptokey.configure()
})
e <- err
}
e := <-c.reconfigure
var err error
c.core.router.doAdmin(func() {
err = c.core.router.cryptokey.configure()
})
e <- err
}
}()