3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

Fix misspelling

This commit is contained in:
Daniel Oaks 2017-04-16 11:36:33 +10:00
parent 166cddecb1
commit 88b5dd5621

View File

@ -174,7 +174,7 @@ func regCreateHandler(server *Server, client *Client, msg ircmsg.IrcMessage) boo
}
}
if credentialType == "certfp" && client.certfp == "" {
client.Send(nil, server.name, ERR_REG_INVALID_CRED_TYPE, client.nick, credentialType, callbackNamespace, "You are not using a certificiate")
client.Send(nil, server.name, ERR_REG_INVALID_CRED_TYPE, client.nick, credentialType, callbackNamespace, "You are not using a certificate")
removeFailedRegCreateData(server.store, casefoldedAccount)
return false
}