diff options
Diffstat (limited to 'src/lib/tls/tls_client.cpp')
-rw-r--r-- | src/lib/tls/tls_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/tls_client.cpp b/src/lib/tls/tls_client.cpp index 9354c4c4d..e5d90c950 100644 --- a/src/lib/tls/tls_client.cpp +++ b/src/lib/tls/tls_client.cpp @@ -224,7 +224,7 @@ void Client::send_client_hello(Handshake_State& state_base, namespace { bool key_usage_matches_ciphersuite(Key_Constraints usage, - Ciphersuite suite) + const Ciphersuite& suite) { if(usage == NO_CONSTRAINTS) return true; // anything goes ... |