From 5c79c4235ec745fa47c1f176657287dab4f61ed5 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 13 Aug 2014 19:13:12 +0400 Subject: [PATCH] Remove goroutines that lead to possible races --- daemon.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.go b/daemon.go index 1bb3959..06916b0 100644 --- a/daemon.go +++ b/daemon.go @@ -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") } -- 2.44.0