From 0a7b69080a3799a4c22327e179dfef011bcf366f Mon Sep 17 00:00:00 2001 From: psychon Date: Wed, 11 Jun 2008 10:06:17 +0000 Subject: [PATCH] Remove an unneeded call to CString::Token() Thanks to x-x for this patch. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1092 726aef4b-f618-498e-8847-2d620e286838 --- Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client.cpp b/Client.cpp index 081458cb..c7023e78 100644 --- a/Client.cpp +++ b/Client.cpp @@ -934,7 +934,7 @@ void CClient::UserCommand(const CString& sLine) { return; } - if (m_pUser->FindServer(sLine.Token(1))) { + if (m_pUser->FindServer(sServer)) { PutStatus("That server already exists"); return; }