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/bogo_shim | |
parent | 00ed1fb41a02471dd7a35500fb68c341b85663ae (diff) |
Shorten callback name
Diffstat (limited to 'src/bogo_shim')
-rw-r--r-- | src/bogo_shim/bogo_shim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bogo_shim/bogo_shim.cpp b/src/bogo_shim/bogo_shim.cpp index 47810c4ba..29331d3cd 100644 --- a/src/bogo_shim/bogo_shim.cpp +++ b/src/bogo_shim/bogo_shim.cpp @@ -1234,8 +1234,8 @@ class Shim_Callbacks final : public Botan::TLS::Callbacks } } - std::vector<uint8_t> tls_srv_provide_cert_status_response(const std::vector<Botan::X509_Certificate>&, - const Botan::TLS::Certificate_Status_Request&) const override + std::vector<uint8_t> tls_provide_cert_status(const std::vector<Botan::X509_Certificate>&, + const Botan::TLS::Certificate_Status_Request&) const override { if(m_args.flag_set("use-ocsp-callback") && m_args.flag_set("fail-ocsp-callback")) throw std::runtime_error("Simulating failure from OCSP response callback"); |