aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/openssl/io
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/openssl/io')
-rw-r--r--library/cpp/openssl/io/stream.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/openssl/io/stream.cpp b/library/cpp/openssl/io/stream.cpp
index f9fdeb2746..0b4be38c0e 100644
--- a/library/cpp/openssl/io/stream.cpp
+++ b/library/cpp/openssl/io/stream.cpp
@@ -25,15 +25,15 @@ namespace {
}
};
- int GetLastSslError() noexcept {
+ int GetLastSslError() noexcept {
return ERR_peek_last_error();
}
- const char* SslErrorText(int error) noexcept {
+ const char* SslErrorText(int error) noexcept {
return ERR_error_string(error, nullptr);
}
- inline TStringBuf SslLastError() noexcept {
+ inline TStringBuf SslLastError() noexcept {
return SslErrorText(GetLastSslError());
}
@@ -69,7 +69,7 @@ namespace {
using TBioPtr = TSslHolderPtr<bio_st>;
using TX509Ptr = TSslHolderPtr<x509_st>;
- inline TSslContextPtr CreateSslCtx(const ssl_method_st* method) {
+ inline TSslContextPtr CreateSslCtx(const ssl_method_st* method) {
TSslContextPtr ctx(SSL_CTX_new(method));
if (!ctx) {