diff options
author | Hannes Rantzsch <[email protected]> | 2019-04-23 15:50:37 +0200 |
---|---|---|
committer | Hannes Rantzsch <[email protected]> | 2019-04-23 15:50:37 +0200 |
commit | 968beff9e28ff0f32e662dfd4fa8e5287cfd2abb (patch) | |
tree | 8e33a6397f400a59eb9236e8b0e06f414d041e56 /src/lib/tls/asio/asio_stream_base.h | |
parent | af9b7c00733b837db793706c1b802b3e9ad5e07b (diff) |
use ErrorType instead of TLS::error and remove convert_exceptions header
Diffstat (limited to 'src/lib/tls/asio/asio_stream_base.h')
-rw-r--r-- | src/lib/tls/asio/asio_stream_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/asio/asio_stream_base.h b/src/lib/tls/asio/asio_stream_base.h index f1c43254e..9a9cc568b 100644 --- a/src/lib/tls/asio/asio_stream_base.h +++ b/src/lib/tls/asio/asio_stream_base.h @@ -69,7 +69,7 @@ class StreamBase<Botan::TLS::Client> { if(side != CLIENT) { - ec = Botan::TLS::error::invalid_argument; + ec = Botan::ErrorType::InvalidArgument; return false; } |