mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-11 12:42:31 +00:00
* Fixed the log redraw which didn't happen as the display's scheduler
didn't get re-added to the task scheduler until a new event happened. * Added redraw delay interval of 100ms, consider 50ms. * Removed exceptions from core::DownloadStore::save. * Added load, load_run, tied_stop and tied_remove to man-page. * Cleaned up the command/option instances, move them to Control. * PCB::load_up_chunk grabbed the errno from m_downChunk, not m_upChunk. * Various string operations were moved to rak/string_manip.h. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@617 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -38,9 +38,9 @@
|
||||
|
||||
#include <functional>
|
||||
#include <rak/algorithm.h>
|
||||
#include <rak/file_stat.h>
|
||||
|
||||
#include "path_input.h"
|
||||
#include "utils/file_stat.h"
|
||||
|
||||
namespace input {
|
||||
|
||||
@@ -68,9 +68,9 @@ struct _transform_filename {
|
||||
_transform_filename(const std::string& base) : m_base(base) {}
|
||||
|
||||
void operator () (std::string& filename) {
|
||||
utils::FileStat fs;
|
||||
rak::file_stat fs;
|
||||
|
||||
if (fs.update((m_base + filename).c_str()))
|
||||
if (!fs.update((m_base + filename)))
|
||||
return;
|
||||
|
||||
else if (fs.is_directory())
|
||||
|
||||
Reference in New Issue
Block a user