summaryrefslogtreecommitdiff
path: root/protocols/IRCG
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2013-12-23 00:38:22 +0000
committerDart Raiden <wowemuh@gmail.com>2013-12-23 00:38:22 +0000
commit7a4faae157b9c17359e1cd95712f0197dd6ea2e2 (patch)
treee0aee704d98a0f07735c740d5d8f6b90c165b665 /protocols/IRCG
parentf23d2dcf82788deb778056912f1e59360e116138 (diff)
spelling correction (e.g. twitter -> Twitter)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7350 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG')
-rw-r--r--protocols/IRCG/src/commandmonitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/commandmonitor.cpp b/protocols/IRCG/src/commandmonitor.cpp
index 9e4218f3dd..b45e26a22f 100644
--- a/protocols/IRCG/src/commandmonitor.cpp
+++ b/protocols/IRCG/src/commandmonitor.cpp
@@ -756,7 +756,7 @@ bool CIrcProto::IsCTCP(const CIrcMessage* pmsg)
// exploit???
if ( mess.Find(1) != -1 || mess.Find( _T("%newl")) != -1 ) {
TCHAR temp[4096];
- mir_sntprintf(temp, SIZEOF(temp), TranslateT( "CTCP ERROR: Malformed CTCP command received from %s!%s@%s. Possible attempt to take control of your irc client registered"), pmsg->prefix.sNick.c_str(), pmsg->prefix.sUser.c_str(), pmsg->prefix.sHost.c_str());
+ mir_sntprintf(temp, SIZEOF(temp), TranslateT( "CTCP ERROR: Malformed CTCP command received from %s!%s@%s. Possible attempt to take control of your IRC client registered"), pmsg->prefix.sNick.c_str(), pmsg->prefix.sUser.c_str(), pmsg->prefix.sHost.c_str());
DoEvent( GC_EVENT_INFORMATION, 0, m_info.sNick.c_str(), temp, NULL, NULL, NULL, true, false);
return true;
}