mirror of https://github.com/aria2/aria2
Fix segfault when time_t is 64bit on 32bit arch (#1666)
On some platforms, like with musl libc, time_t may be 64 bit even on 32bit platforms. Fix segfault by convert time_t to 64 bit and use 64bit format modifier instead of assume time_t is %ldpull/1682/head^2
parent
15cad965eb
commit
2d0171e956
|
@ -183,11 +183,12 @@ bool ServerStat::operator==(const ServerStat& serverStat) const
|
|||
std::string ServerStat::toString() const
|
||||
{
|
||||
return fmt("host=%s, protocol=%s, dl_speed=%d, sc_avg_speed=%d,"
|
||||
" mc_avg_speed=%d, last_updated=%ld, counter=%d, status=%s",
|
||||
" mc_avg_speed=%d, last_updated=%" PRId64
|
||||
", counter=%d, status=%s",
|
||||
getHostname().c_str(), getProtocol().c_str(), getDownloadSpeed(),
|
||||
getSingleConnectionAvgSpeed(), getMultiConnectionAvgSpeed(),
|
||||
getLastUpdated().getTimeFromEpoch(), getCounter(),
|
||||
STATUS_STRING[getStatus()]);
|
||||
static_cast<int64_t>(getLastUpdated().getTimeFromEpoch()),
|
||||
getCounter(), STATUS_STRING[getStatus()]);
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Reference in New Issue