aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/tls_callbacks.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-05-22 13:30:20 -0400
committerJack Lloyd <[email protected]>2019-05-22 13:43:47 -0400
commite9daa129ac96e6412af227505f4048097019516a (patch)
treefd983866e26420b463d915c97dd80421fbbe2c3b /src/lib/tls/tls_callbacks.h
parent00ed1fb41a02471dd7a35500fb68c341b85663ae (diff)
Shorten callback name
Diffstat (limited to 'src/lib/tls/tls_callbacks.h')
-rw-r--r--src/lib/tls/tls_callbacks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/tls/tls_callbacks.h b/src/lib/tls/tls_callbacks.h
index 6dd8e2b4d..325ed884b 100644
--- a/src/lib/tls/tls_callbacks.h
+++ b/src/lib/tls/tls_callbacks.h
@@ -153,8 +153,8 @@ class BOTAN_PUBLIC_API(2,0) Callbacks
* empty vector to indicate that no response is available, and thus
* suppress the Certificate_Status message.
*/
- virtual std::vector<uint8_t> tls_srv_provide_cert_status_response(const std::vector<X509_Certificate>& chain,
- const Certificate_Status_Request& csr) const
+ virtual std::vector<uint8_t> tls_provide_cert_status(const std::vector<X509_Certificate>& chain,
+ const Certificate_Status_Request& csr) const
{
BOTAN_UNUSED(chain);
BOTAN_UNUSED(csr);