1
0
Fork 0
forked from lthn/blockchain

fixed another linux-specific compilation problem

This commit is contained in:
cryptozoidberg 2022-11-18 13:19:01 +01:00
parent cadb3d033a
commit ccc761df3a
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -668,7 +668,7 @@ namespace epee
bool shutdown()
{
blocked_mode_client::shutdown();
blocked_mode_client_t<is_ssl>::shutdown();
m_send_deadline.cancel();
return true;
}
@ -753,7 +753,7 @@ namespace epee
}
// Put the actor back to sleep.
m_send_deadline.async_wait(boost::bind(&async_blocked_mode_client::check_send_deadline, this));
m_send_deadline.async_wait(boost::bind(&async_blocked_mode_client_t<is_ssl>::check_send_deadline, this));
}
};