attempt to make session_time() not return negative numbers

This commit is contained in:
arvidn 2016-04-23 09:42:32 -04:00
parent 6171c911a0
commit ed5673bf5c
1 changed files with 1 additions and 1 deletions

View File

@ -987,7 +987,7 @@ namespace libtorrent
// +1 is here to make it possible to distinguish uninitialized (to
// 0) timestamps and timestamps of things that happend during the
// first second after the session was constructed
boost::int64_t const ret = total_seconds(aux::time_now() - m_created) + 1;
boost::int64_t const ret = total_seconds(clock_type::now() - m_created) + 1;
TORRENT_ASSERT(ret >= 0);
TORRENT_ASSERT(ret <= (std::numeric_limits<boost::uint16_t>::max)());
return static_cast<boost::uint16_t>(ret);