summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Kingsley <chaz@anope.org>2011-07-23 13:07:19 +0100
committerCharles Kingsley <chaz@anope.org>2011-07-23 13:07:19 +0100
commit87d2f4b8d7c574759d1d9e5f69524a5be857fb60 (patch)
treeb44815120ebd1782318e6312ed82104924088f42
parent39ca53cfcf33c1a2034b987feab313ee7a94725e (diff)
Fix couple of typos in modules
-rw-r--r--modules/core/os_login.cpp2
-rw-r--r--modules/extra/m_mysql.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/os_login.cpp b/modules/core/os_login.cpp
index 332b00545..94a82e334 100644
--- a/modules/core/os_login.cpp
+++ b/modules/core/os_login.cpp
@@ -41,7 +41,7 @@ class CommandOSLogin : public Command
}
else
{
- Log(LOG_ADMIN, source.u, this) << "and succesfully identified to " << source.owner->nick;
+ Log(LOG_ADMIN, source.u, this) << "and successfully identified to " << source.owner->nick;
source.u->Extend("os_login_password_correct");
source.Reply(_("Password accepted."));
}
diff --git a/modules/extra/m_mysql.cpp b/modules/extra/m_mysql.cpp
index c824f0613..4e0111bfd 100644
--- a/modules/extra/m_mysql.cpp
+++ b/modules/extra/m_mysql.cpp
@@ -227,7 +227,7 @@ class ModuleSQL : public Module, public Pipe
this->MySQLServices.insert(std::make_pair(connname, ss));
ModuleManager::RegisterService(ss);
- Log(LOG_NORMAL, "mysql") << "MySQL: Sucessfully connected to server " << connname << " (" << server << ")";
+ Log(LOG_NORMAL, "mysql") << "MySQL: Successfully connected to server " << connname << " (" << server << ")";
}
catch (const SQLException &ex)
{