Switched from tracker dump in bencode to std::istream*.

Various *BSD port fixes.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@406 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-04-20 14:20:09 +00:00
parent 70a73ea441
commit f139621c4c
4 changed files with 12 additions and 5 deletions
+2 -1
View File
@@ -54,7 +54,8 @@ print_download_status(core::Download* d) {
std::string
print_hhmmss(utils::Timer t) {
std::tm *u = std::localtime(&(time_t)t.tval().tv_sec);
time_t tv_sec = static_cast<time_t>(t.tval().tv_sec);
std::tm *u = std::localtime(&tv_sec);
if (u == NULL)
return "inv_time";