aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-07-29 16:56:37 +0000
committerlloyd <[email protected]>2012-07-29 16:56:37 +0000
commita48a8b9faed0dcef8e24d4c36a15c3a545a1e157 (patch)
tree1d2fedb2427bacea5d638c51d5728aad11102319 /checks
parent80181e49000b45433397636b2fe21168880783a8 (diff)
Clang warning about missing result type
Diffstat (limited to 'checks')
-rw-r--r--checks/tls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/tls.cpp b/checks/tls.cpp
index db3c008e2..1d0ac3ceb 100644
--- a/checks/tls.cpp
+++ b/checks/tls.cpp
@@ -141,7 +141,7 @@ void test_handshake(RandomNumberGenerator& rng)
std::vector<byte> c2s_q, s2c_q, c2s_data, s2c_data;
- auto handshake_complete = [](const TLS::Session& session)
+ auto handshake_complete = [](const TLS::Session& session) -> bool
{
std::cout << "Handshake complete, " << session.version().to_string()
<< " using " << session.ciphersuite().to_string() << "\n";