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_chgname.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_chgname.cpp') diff --git a/src/modules/m_chgname.cpp b/src/modules/m_chgname.cpp index 46894befc..b6c59d36f 100644 --- a/src/modules/m_chgname.cpp +++ b/src/modules/m_chgname.cpp @@ -45,20 +45,20 @@ class CommandChgname : public Command if (parameters[1].empty()) { - user->WriteNotice("*** CHGNAME: GECOS must be specified"); + user->WriteNotice("*** CHGNAME: Real name must be specified"); return CMD_FAILURE; } if (parameters[1].length() > ServerInstance->Config->Limits.MaxGecos) { - user->WriteNotice("*** CHGNAME: GECOS too long"); + user->WriteNotice("*** CHGNAME: Real name is too long"); return CMD_FAILURE; } if (IS_LOCAL(dest)) { dest->ChangeName(parameters[1]); - ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGNAME to change %s's GECOS to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->fullname.c_str()); + ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGNAME to change %s's real name to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->fullname.c_str()); } return CMD_SUCCESS; -- cgit v1.3.1-10-gc9f91