diff options
Diffstat (limited to 'meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch')
-rw-r--r-- | meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch b/meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch deleted file mode 100644 index 5318a6a103..0000000000 --- a/meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | Origin: https://github.com/Microsoft/cpprestsdk/issues/813 | ||
2 | Last-Update: 2018-07-23 | ||
3 | |||
4 | --- cpprest-2.10.2.orig/Release/libs/websocketpp/websocketpp/transport/asio/security/tls.hpp | ||
5 | +++ cpprest-2.10.2/Release/libs/websocketpp/websocketpp/transport/asio/security/tls.hpp | ||
6 | @@ -312,7 +312,7 @@ protected: | ||
7 | return make_error_code(transport::error::tls_short_read); | ||
8 | #else | ||
9 | if (ERR_GET_REASON(ec.value()) == boost::asio::ssl::error::stream_truncated) { | ||
10 | - return make_error_code(boost::asio::ssl::error::stream_truncated); | ||
11 | + return make_error_code(static_cast<std::errc>(boost::asio::ssl::error::stream_truncated)); | ||
12 | #endif | ||
13 | } else { | ||
14 | // We know it is a TLS related error, but otherwise don't know | ||