aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/msg_server_kex.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-08-06 12:22:59 +0000
committerlloyd <[email protected]>2012-08-06 12:22:59 +0000
commitadde1ee09300a4dd7a42a6f8e819b8f92ca4a2bd (patch)
tree28325f295b58a621349ec2ae797c87beec2e6887 /src/tls/msg_server_kex.cpp
parent8120cce3f345a212c1f81226441d71cd75aa3cbc (diff)
Make the handshake hash private
Diffstat (limited to 'src/tls/msg_server_kex.cpp')
-rw-r--r--src/tls/msg_server_kex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/msg_server_kex.cpp b/src/tls/msg_server_kex.cpp
index f3721a2b5..b3c4e9017 100644
--- a/src/tls/msg_server_kex.cpp
+++ b/src/tls/msg_server_kex.cpp
@@ -135,7 +135,7 @@ Server_Key_Exchange::Server_Key_Exchange(Handshake_IO& io,
m_signature = signer.signature(rng);
}
- state->hash.update(io.send(*this));
+ state->hash().update(io.send(*this));
}
/**