diff options
-rw-r--r-- | modules/core/os_login.cpp | 2 | ||||
-rw-r--r-- | modules/extra/m_mysql.cpp | 2 |
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) { |