aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ircv3.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2018-07-30 18:50:34 +0100
committerGravatar Peter Powell2018-07-30 18:50:34 +0100
commitabbf70b2a35edaf17631e43027828011296924ad (patch)
tree62df618ad367cad9324cb1e91182790c22c9b5f8 /src/modules/m_ircv3.cpp
parentReplace most usages of "name" with "real" or "real name". (diff)
Rename User::fullname to realname and make it private.
Diffstat (limited to 'src/modules/m_ircv3.cpp')
-rw-r--r--src/modules/m_ircv3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3.cpp b/src/modules/m_ircv3.cpp
index 543fb49a4..bbf3d7bc4 100644
--- a/src/modules/m_ircv3.cpp
+++ b/src/modules/m_ircv3.cpp
@@ -108,7 +108,7 @@ class ModuleIRCv3 : public Module, public AccountEventListener
if (!has_account)
line += "*";
- line += " :" + memb->user->fullname;
+ line += " :" + memb->user->GetRealName();
// If the joining user received privileges from another module then we must send them as well,
// since silencing the normal join means the MODE will be silenced as well