* Moved PeerConnectionBase::m_downTransfer into RequestList.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@714 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2006-06-08 18:45:51 +00:00
parent beeea9fd3e
commit ffb820f536
+2 -2
View File
@@ -317,10 +317,10 @@ path_expand(std::vector<std::string>* paths, const std::string& pattern) {
currentCache.push_back(utils::Directory("/"));
++first;
} else if (rak::trim(*first) == "~") {
currentCache.push_back(utils::Directory("~/"));
currentCache.push_back(utils::Directory("~"));
++first;
} else {
currentCache.push_back(utils::Directory("./"));
currentCache.push_back(utils::Directory("."));
}
// Might be an idea to use depth-first search instead.