aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ident.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-07-07 10:42:36 +0100
committerGravatar Sadie Powell2023-07-07 10:42:36 +0100
commit06b938144b66684fc7c849e54c544dc8a8afa487 (patch)
tree57c134f85bb1b58fed29eb9a0e1f11c80def40cc /src/modules/m_ident.cpp
parentAdd support for rechecking whether a user is in a DNSBL. (diff)
Use `username` in the ident module too.
Nowhere in RFC 1413 does it refer to this field as an ident.
Diffstat (limited to 'src/modules/m_ident.cpp')
-rw-r--r--src/modules/m_ident.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp
index 5ec33d0ba..217ac402b 100644
--- a/src/modules/m_ident.cpp
+++ b/src/modules/m_ident.cpp
@@ -337,7 +337,7 @@ public:
return;
}
- user->WriteNotice("*** Looking up your ident...");
+ user->WriteNotice("*** Looking up your username...");
try
{
@@ -389,13 +389,13 @@ public:
{
state.Set(user, IDENT_MISSING);
PrefixUser(user);
- user->WriteNotice("*** Could not find your ident, using " + user->GetRealUser() + " instead.");
+ user->WriteNotice("*** Could not find your username, using " + user->GetRealUser() + " instead.");
}
else
{
state.Set(user, IDENT_FOUND);
user->ChangeRealUser(isock->result, user->GetDisplayedUser() == user->GetRealUser());
- user->WriteNotice("*** Found your ident (" + user->GetRealUser() + ").");
+ user->WriteNotice("*** Found your username (" + user->GetRealUser() + ")");
}
isock->Close();