summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-11-09 19:31:54 -0500
committerAdam <Adam@anope.org>2012-11-10 13:57:06 -0500
commitb51f60cc1eceb73b90bda1ccb0d2399f25e6b313 (patch)
tree231de2129fc35927e91f276144d8becb513feb84 /src/users.cpp
parent504232b38847bf20b7d4808846c4a15e954f45a1 (diff)
Fix user account logout message
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index f536115d4..ea02566d4 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -467,7 +467,7 @@ void User::Logout()
if (!this->nc)
return;
- Log(this, "account") << "is not longer identified as " << this->nc->display;
+ Log(this, "account") << "is no longer identified as " << this->nc->display;
std::list<User *>::iterator it = std::find(this->nc->Users.begin(), this->nc->Users.end(), this);
if (it != this->nc->Users.end())