From e3f22fcf31cd2e789d1be90cf0edf3e82829b54e Mon Sep 17 00:00:00 2001 From: genius3000 Date: Tue, 10 Apr 2018 11:05:11 -0600 Subject: Change some usage of "gecos" to "real name" Within the example configs, helpops, some server sent messages, and simple code comments: change the primary usage of "gecos" to "real name" (or "realname" where fitting). --- src/modules/m_setname.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_setname.cpp') diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 34428e9c0..b8efd98aa 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -29,20 +29,20 @@ class CommandSetname : public Command CommandSetname(Module* Creator) : Command(Creator,"SETNAME", 1, 1) { allow_empty_last_param = false; - syntax = ""; + syntax = ""; } CmdResult Handle(const std::vector& parameters, User* user) CXX11_OVERRIDE { if (parameters[0].size() > ServerInstance->Config->Limits.MaxGecos) { - user->WriteNotice("*** SETNAME: GECOS too long"); + user->WriteNotice("*** SETNAME: Real name is too long"); return CMD_FAILURE; } if (user->ChangeName(parameters[0])) { - ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their GECOS to '%s'", user->nick.c_str(), parameters[0].c_str()); + ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their real name to '%s'", user->nick.c_str(), parameters[0].c_str()); } return CMD_SUCCESS; -- cgit v1.3.1-10-gc9f91