diff options
author | Peter Powell <petpow@saberuk.com> | 2018-07-30 18:30:11 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-07-30 18:30:11 +0100 |
commit | 8cb20e354533fbec24aafd4e61ff6fa69b434aa2 (patch) | |
tree | 894c77067d6cd443f3ab44b58639b03228079ec8 /include/modules | |
parent | 9cf448a332799a138dad0acb5b2878535770571d (diff) |
Replace most usages of "GECOS" with "real" or "real name".
Diffstat (limited to 'include/modules')
-rw-r--r-- | include/modules/sql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/sql.h b/include/modules/sql.h index 59955107d..1f5bb7ff3 100644 --- a/include/modules/sql.h +++ b/include/modules/sql.h @@ -260,7 +260,7 @@ inline void SQL::PopulateUserInfo(User* user, ParamMap& userinfo) userinfo["nick"] = user->nick; userinfo["host"] = user->GetRealHost(); userinfo["ip"] = user->GetIPString(); - userinfo["gecos"] = user->fullname; + userinfo["real"] = user->fullname; userinfo["ident"] = user->ident; userinfo["server"] = user->server->GetName(); userinfo["uuid"] = user->uuid; |