We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c1fd29 commit 3a89e25Copy full SHA for 3a89e25
src/network/clientpackethandler.cpp
@@ -55,9 +55,10 @@ void Client::handleCommand_Hello(NetworkPacket* pkt)
55
// Chose an auth method we support
56
AuthMechanism chosen_auth_mechanism = choseAuthMech(auth_mechs);
57
58
- infostream << "Client: TOCLIENT_HELLO received with "
59
- << "serialization_ver=" << serialization_ver
+ infostream << "Client: TOCLIENT_HELLO recieved with "
+ << "serialization_ver=" << (u32)serialization_ver
60
<< ", auth_mechs=" << auth_mechs
61
+ << ", proto_ver=" << proto_ver
62
<< ", compression_mode=" << compression_mode
63
<< ". Doing auth with mech " << chosen_auth_mechanism << std::endl;
64
Huh ? The correct word is received, not recieved.
received
recieved
Right, i fix this typo
2 commit comments
kilbith commentedon Jun 23, 2015
Huh ? The correct word is
received
, notrecieved
.nerzhul commentedon Jun 23, 2015
Right, i fix this typo