diff options
author | lloyd <[email protected]> | 2012-08-06 19:23:22 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-08-06 19:23:22 +0000 |
commit | a6a040f27bb9bb0bbee0371cb06b6975f83afabb (patch) | |
tree | a9a3c85b1c0bd235c820d587d46dcd3f36d1977a /src | |
parent | 8122389c0a95f6f98e71c96ae3366b48f9e43cb8 (diff) |
Fix parens
Diffstat (limited to 'src')
-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 33ab044b1..e5e8db0c3 100644 --- a/src/tls/tls_client.cpp +++ b/src/tls/tls_client.cpp @@ -166,7 +166,7 @@ void Client::process_handshake_msg(Handshake_Type type, return; if(!m_policy.allow_server_initiated_renegotiation() || - (!m_policy.allow_insecure_renegotiation()) && !m_secure_renegotiation.supported()) + (!m_policy.allow_insecure_renegotiation() && !m_secure_renegotiation.supported())) { m_state.reset(); |