summaryrefslogtreecommitdiff
path: root/src/network/clientpackethandler.cpp
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-09-19 13:46:56 +0200
committersfan5 <sfan5@live.de>2021-09-19 13:54:20 +0200
commite0529da5c84f224c380e6d5e063392cb01f85683 (patch)
treebd5ec775a56f78d62f2bd6f6901936da26b1604f /src/network/clientpackethandler.cpp
parent16a62426d6ac2f88125d258256af31bc2114b960 (diff)
downloadminetest-e0529da5c84f224c380e6d5e063392cb01f85683.tar.gz
minetest-e0529da5c84f224c380e6d5e063392cb01f85683.tar.bz2
minetest-e0529da5c84f224c380e6d5e063392cb01f85683.zip
Fix trivial typos
Diffstat (limited to 'src/network/clientpackethandler.cpp')
-rw-r--r--src/network/clientpackethandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/clientpackethandler.cpp b/src/network/clientpackethandler.cpp
index b2965c23d..d20a80fb7 100644
--- a/src/network/clientpackethandler.cpp
+++ b/src/network/clientpackethandler.cpp
@@ -88,7 +88,7 @@ void Client::handleCommand_Hello(NetworkPacket* pkt)
// This is only neccessary though when we actually want to add casing support
if (m_chosen_auth_mech != AUTH_MECHANISM_NONE) {
- // we recieved a TOCLIENT_HELLO while auth was already going on
+ // we received a TOCLIENT_HELLO while auth was already going on
errorstream << "Client: TOCLIENT_HELLO while auth was already going on"
<< "(chosen_mech=" << m_chosen_auth_mech << ")." << std::endl;
if (m_chosen_auth_mech == AUTH_MECHANISM_SRP ||
@@ -156,7 +156,7 @@ void Client::handleCommand_AcceptSudoMode(NetworkPacket* pkt)
m_password = m_new_password;
- verbosestream << "Client: Recieved TOCLIENT_ACCEPT_SUDO_MODE." << std::endl;
+ verbosestream << "Client: Received TOCLIENT_ACCEPT_SUDO_MODE." << std::endl;
// send packet to actually set the password
startAuth(AUTH_MECHANISM_FIRST_SRP);