mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-11 20:52:30 +00:00
* Replaced most of the internal sigc++ slots and signals with a
lightweight version. This cut the size of the library w/debug by more than 300kb. All (almost) the signals the client connects to are now in DownloadWrapper. * Fixed off-by-one error in the month displayed. * Moved tracker url cleanup to src/parse and improved it. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@580 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -129,7 +129,7 @@ print_ddmmyyyy(time_t t) {
|
||||
str.fill('0');
|
||||
|
||||
str << std::setw(2) << u->tm_mday << '/'
|
||||
<< std::setw(2) << u->tm_mon << '/'
|
||||
<< std::setw(2) << (u->tm_mon + 1) << '/'
|
||||
<< std::setw(4) << (1900 + u->tm_year);
|
||||
|
||||
return str.str();
|
||||
|
||||
Reference in New Issue
Block a user