Skip to content
This repository has been archived by the owner on Sep 21, 2020. It is now read-only.

Commit

Permalink
Message: Fix typo in error message. (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJohnson authored Nov 25, 2016
1 parent 046d385 commit b8e9439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Message.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ std::shared_ptr<Message> Message::Read(WireDecoder& decoder,
break;
case kServerHello:
if (decoder.proto_rev() < 0x0300u) {
decoder.set_error("received SERVER_HELLO_DONE in protocol < 3.0");
decoder.set_error("received SERVER_HELLO in protocol < 3.0");
return nullptr;
}
if (!decoder.Read8(&msg->m_flags)) return nullptr;
Expand Down

0 comments on commit b8e9439

Please sign in to comment.