diff options
author | lloyd <[email protected]> | 2012-09-06 19:04:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-09-06 19:04:58 +0000 |
commit | d7edd620da6a7576a90e6877fa0a8b3632864b9c (patch) | |
tree | 2cab33a5d084c00d526ba693235ed94c3860f97e | |
parent | a0586a0b542ebf08b58c371eae7c7b1cacf84ecc (diff) |
The checks in renegotiate would prevent initiate_handshake from being
called. Instead call it directly as we know the state is already set
up.
-rw-r--r-- | src/tls/tls_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_client.cpp b/src/tls/tls_client.cpp index 39a71c432..c88d0319a 100644 --- a/src/tls/tls_client.cpp +++ b/src/tls/tls_client.cpp @@ -163,7 +163,7 @@ void Client::process_handshake_msg(Handshake_State& state, return; } - this->renegotiate(false); + this->initiate_handshake(state, false); return; } |