mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
Fix special build
This commit is contained in:
parent
fe82d2bbe2
commit
092b06f32e
@ -8,7 +8,7 @@
|
||||
namespace DB
|
||||
{
|
||||
|
||||
bool checkSSLWantRead([[maybe_unused]] ssize_t res)
|
||||
bool checkSSLWantRead([[maybe_unused]] ssize_t ret)
|
||||
{
|
||||
#if USE_SSL
|
||||
return res == Poco::Net::SecureStreamSocket::ERR_SSL_WANT_READ;
|
||||
@ -17,7 +17,7 @@ bool checkSSLWantRead([[maybe_unused]] ssize_t res)
|
||||
#endif
|
||||
}
|
||||
|
||||
bool checkSSLWantWrite([[maybe_unused]] ssize_t res)
|
||||
bool checkSSLWantWrite([[maybe_unused]] ssize_t ret)
|
||||
{
|
||||
#if USE_SSL
|
||||
return res == Poco::Net::SecureStreamSocket::ERR_SSL_WANT_WRITE;
|
||||
|
Loading…
Reference in New Issue
Block a user