aboutsummaryrefslogtreecommitdiff
path: root/cmd_user.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd_user.go')
-rw-r--r--cmd_user.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_user.go b/cmd_user.go
index 3db56c7..06fd7a3 100644
--- a/cmd_user.go
+++ b/cmd_user.go
@@ -13,7 +13,7 @@ func handleClientUser(msg RMsg, client *Client) bool {
client.Send(MakeMsg(self, ERR_NEEDMOREPARAMS, "USER", "Not enough parameters"))
return true
}
- switch (client.State) {
+ switch client.State {
case ClientStatePreRegistration:
client.Ident = "~" + msg.Params[0]
client.Gecos = msg.Params[3]