diff options
Diffstat (limited to 'src/lib/tls/tls_client.h')
-rw-r--r-- | src/lib/tls/tls_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/tls_client.h b/src/lib/tls/tls_client.h index 63c26b9cd..005370e78 100644 --- a/src/lib/tls/tls_client.h +++ b/src/lib/tls/tls_client.h @@ -132,7 +132,7 @@ class BOTAN_PUBLIC_API(2,0) Client final : public Channel /** * @return network protocol as advertised by the TLS server, if server sent the ALPN extension */ - const std::string& application_protocol() const { return m_application_protocol; } + std::string application_protocol() const override { return m_application_protocol; } private: void init(const Protocol_Version& protocol_version, const std::vector<std::string>& next_protocols); |