diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-10 14:08:51 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-10 14:14:49 +0000 |
commit | f61a315e8bb1742c98fd9d5a81dc33b7ed0f75cc (patch) | |
tree | d5979f462675c6c76074a15b95d5e0f095344ded /contrib/epee | |
parent | Merge pull request #5509 (diff) | |
download | monero-f61a315e8bb1742c98fd9d5a81dc33b7ed0f75cc.tar.xz |
net_utils: fix m_ssl type from time_t to bool
Diffstat (limited to 'contrib/epee')
-rw-r--r-- | contrib/epee/include/net/net_utils_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/net_utils_base.h b/contrib/epee/include/net/net_utils_base.h index 50536f63b..c1a126d11 100644 --- a/contrib/epee/include/net/net_utils_base.h +++ b/contrib/epee/include/net/net_utils_base.h @@ -250,7 +250,7 @@ namespace net_utils const network_address m_remote_address; const bool m_is_income; const time_t m_started; - const time_t m_ssl; + const bool m_ssl; time_t m_last_recv; time_t m_last_send; uint64_t m_recv_cnt; |