From b51f60cc1eceb73b90bda1ccb0d2399f25e6b313 Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 9 Nov 2012 19:31:54 -0500 Subject: Fix user account logout message --- src/users.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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::iterator it = std::find(this->nc->Users.begin(), this->nc->Users.end(), this); if (it != this->nc->Users.end()) -- cgit