From f0d8887b086581bfb09d9338914a24f1d4f0b99f Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 30 Apr 2012 04:16:59 -0700 Subject: [PATCH] Typo. --- src/Peer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Peer.cpp b/src/Peer.cpp index 8917c96b47..05dc85c50e 100644 --- a/src/Peer.cpp +++ b/src/Peer.cpp @@ -728,7 +728,7 @@ void Peer::getSessionCookie(std::string& strDst) SHA512(s1, l1, sha1); SHA512(s2, l2, sha2); if (memcmp(s1, s2, sizeof(sha1)) == 0) - throw std::runtime_errror("Identical finished messages"); + throw std::runtime_error("Identical finished messages"); for (int i = 0; i < sizeof(sha1); ++i) sha1[i] ^= sha2[i];