diff options
author | Jack Lloyd <[email protected]> | 2019-05-22 13:30:20 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-05-22 13:43:47 -0400 |
commit | e9daa129ac96e6412af227505f4048097019516a (patch) | |
tree | fd983866e26420b463d915c97dd80421fbbe2c3b /src/lib/tls/tls_server.cpp | |
parent | 00ed1fb41a02471dd7a35500fb68c341b85663ae (diff) |
Shorten callback name
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 8443c9c8c..63e04a568 100644 --- a/src/lib/tls/tls_server.cpp +++ b/src/lib/tls/tls_server.cpp @@ -859,7 +859,7 @@ void Server::session_create(Server_Handshake_State& pending_state, auto csr = pending_state.client_hello()->extensions().get<Certificate_Status_Request>(); // csr is non-null if client_hello()->supports_cert_status_message() BOTAN_ASSERT_NOMSG(csr != nullptr); - const auto resp_bytes = callbacks().tls_srv_provide_cert_status_response(cert_chains[algo_used], *csr); + const auto resp_bytes = callbacks().tls_provide_cert_status(cert_chains[algo_used], *csr); if(resp_bytes.size() > 0) { pending_state.server_cert_status(new Certificate_Status( |