diff options
author | lloyd <[email protected]> | 2012-01-26 21:36:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-26 21:36:19 +0000 |
commit | 17554e7261c56b809c48a55b3afffe7f87a3a8e1 (patch) | |
tree | a953ca2e3460b67f175c9e63cc7ce5e1e5aca315 /src/tls/tls_client.cpp | |
parent | cb8c64be095a0ef75beb621e8d669096efd7b8ae (diff) |
Remove Alert::Level enum, replace with bool
Diffstat (limited to 'src/tls/tls_client.cpp')
-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 9fbf8c772..8df0c77a1 100644 --- a/src/tls/tls_client.cpp +++ b/src/tls/tls_client.cpp @@ -131,7 +131,7 @@ void Client::process_handshake_msg(Handshake_Type type, state = 0; // RFC 5746 section 4.2 - send_alert(Alert(Alert::WARNING, Alert::NO_RENEGOTIATION)); + send_alert(Alert(Alert::NO_RENEGOTIATION)); return; } |