diff options
Diffstat (limited to 'src/lib/tls/tls_server.cpp')
-rw-r--r-- | src/lib/tls/tls_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/tls_server.cpp b/src/lib/tls/tls_server.cpp index 7a9605b3b..6dc1ba9f2 100644 --- a/src/lib/tls/tls_server.cpp +++ b/src/lib/tls/tls_server.cpp @@ -153,7 +153,7 @@ uint16_t choose_ciphersuite( const Client_Hello& client_hello) { const bool our_choice = policy.server_uses_own_ciphersuite_preferences(); - const std::vector<uint16_t> client_suites = client_hello.ciphersuites(); + const std::vector<uint16_t>& client_suites = client_hello.ciphersuites(); const std::vector<uint16_t> server_suites = policy.ciphersuite_list(version); if(server_suites.empty()) |