diff options
Diffstat (limited to 'src/lib/tls/tls_server.h')
-rw-r--r-- | src/lib/tls/tls_server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/tls_server.h b/src/lib/tls/tls_server.h index c55c3f93d..e6536934a 100644 --- a/src/lib/tls/tls_server.h +++ b/src/lib/tls/tls_server.h @@ -110,7 +110,7 @@ class BOTAN_PUBLIC_API(2,0) Server final : public Channel * tied to the session and a later renegotiation of the same * session can choose a new protocol. */ - std::string application_protocol() const { return m_next_protocol; } + std::string application_protocol() const override { return m_next_protocol; } private: std::vector<X509_Certificate> |