From a54de06bf4e4fbfc0d4c4a96ea4ecac339dd18a4 Mon Sep 17 00:00:00 2001 From: Andy Alt Date: Mon, 4 Jun 2018 14:25:37 -0500 Subject: [PATCH] ircclient.cpp:correct spelling removed the unnecessary "g" --- source/shared_lib/sources/platform/posix/ircclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared_lib/sources/platform/posix/ircclient.cpp b/source/shared_lib/sources/platform/posix/ircclient.cpp index b6feee1d..c329856b 100644 --- a/source/shared_lib/sources/platform/posix/ircclient.cpp +++ b/source/shared_lib/sources/platform/posix/ircclient.cpp @@ -825,7 +825,7 @@ void IRCThread::execute() { if(SystemFlags::VERBOSE_MODE_ENABLED || IRCThread::debugEnabled) printf ("===> IRC: Line: %d\n", __LINE__); safeMutex.Lock(); - if(irc_connect(ircSession, argv[0].c_str(), IRC_SERVER_PORT, 0, this->nick.c_str(), this->username.c_str(), ("MegagGlest "+glestVersionString).c_str())) { + if(irc_connect(ircSession, argv[0].c_str(), IRC_SERVER_PORT, 0, this->nick.c_str(), this->username.c_str(), ("MegaGlest "+glestVersionString).c_str())) { safeMutex.ReleaseLock(); if(SystemFlags::VERBOSE_MODE_ENABLED || IRCThread::debugEnabled) printf ("===> IRC Could not connect: %s\n", irc_strerror (irc_errno(ircSession))); return;