Remove goroutines that lead to possible races

This commit is contained in:
Sergey Matveev 2014-08-13 19:13:12 +04:00
parent cfeaaad88f
commit 5c79c4235e
1 changed files with 2 additions and 2 deletions

View File

@ -323,7 +323,7 @@ func (daemon *Daemon) Processor(events <-chan ClientEvent) {
case "LIST":
daemon.SendList(client, cols)
case "LUSERS":
go daemon.SendLusers(client)
daemon.SendLusers(client)
case "MODE":
if len(cols) == 1 || len(cols[1]) < 1 {
client.ReplyNotEnoughParameters("MODE")
@ -436,7 +436,7 @@ func (daemon *Daemon) Processor(events <-chan ClientEvent) {
}
cols := strings.Split(cols[1], " ")
nicknames := strings.Split(cols[len(cols)-1], ",")
go daemon.SendWhois(client, nicknames)
daemon.SendWhois(client, nicknames)
default:
client.ReplyNicknamed("421", command, "Unknown command")
}