diff options
| author | 2018-07-30 18:30:11 +0100 | |
|---|---|---|
| committer | 2018-07-30 18:30:11 +0100 | |
| commit | 8cb20e354533fbec24aafd4e61ff6fa69b434aa2 (patch) | |
| tree | 894c77067d6cd443f3ab44b58639b03228079ec8 /src/modules/m_chgname.cpp | |
| parent | Replace irc::stringjoiner with a generic stdalgo::string::join. (diff) | |
Replace most usages of "GECOS" with "real" or "real name".
Diffstat (limited to 'src/modules/m_chgname.cpp')
| -rw-r--r-- | src/modules/m_chgname.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_chgname.cpp b/src/modules/m_chgname.cpp index fa35732b8..d0a4d6fdc 100644 --- a/src/modules/m_chgname.cpp +++ b/src/modules/m_chgname.cpp @@ -49,7 +49,7 @@ class CommandChgname : public Command return CMD_FAILURE; } - if (parameters[1].length() > ServerInstance->Config->Limits.MaxGecos) + if (parameters[1].length() > ServerInstance->Config->Limits.MaxReal) { user->WriteNotice("*** CHGNAME: Real name is too long"); return CMD_FAILURE; |
