aboutsummaryrefslogtreecommitdiffstats
path: root/include/users.h
diff options
context:
space:
mode:
authorGravatar Peter Powell2018-07-30 18:30:11 +0100
committerGravatar Peter Powell2018-07-30 18:30:11 +0100
commit8cb20e354533fbec24aafd4e61ff6fa69b434aa2 (patch)
tree894c77067d6cd443f3ab44b58639b03228079ec8 /include/users.h
parentReplace irc::stringjoiner with a generic stdalgo::string::join. (diff)
downloadinspircd++-8cb20e354533fbec24aafd4e61ff6fa69b434aa2.tar.gz
inspircd++-8cb20e354533fbec24aafd4e61ff6fa69b434aa2.tar.bz2
inspircd++-8cb20e354533fbec24aafd4e61ff6fa69b434aa2.zip
Replace most usages of "GECOS" with "real" or "real name".
Diffstat (limited to 'include/users.h')
-rw-r--r--include/users.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/users.h b/include/users.h
index 88858b160..bcddab1bf 100644
--- a/include/users.h
+++ b/include/users.h
@@ -308,7 +308,7 @@ class CoreExport User : public Extensible
*/
std::string ident;
- /** The users full name (GECOS).
+ /** The users full name.
*/
std::string fullname;
@@ -707,10 +707,10 @@ class CoreExport User : public Extensible
* ALWAYS use this function, rather than writing User::fullname directly,
* as this triggers module events allowing the change to be syncronized to
* remote servers.
- * @param gecos The user's new realname
+ * @param real The user's new real name
* @return True if the change succeeded, false if otherwise
*/
- bool ChangeName(const std::string& gecos);
+ bool ChangeName(const std::string& real);
/** Change a user's nick
* @param newnick The new nick. If equal to the users uuid, the nick change always succeeds.