From: <arn...@us...> - 2006-10-10 08:45:32
|
Revision: 671 http://svn.sourceforge.net/dcplusplus/?rev=671&view=rev Author: arnetheduck Date: 2006-10-10 01:45:25 -0700 (Tue, 10 Oct 2006) Log Message: ----------- Filelist slot fix Modified Paths: -------------- dcplusplus/trunk/client/UploadManager.cpp Modified: dcplusplus/trunk/client/UploadManager.cpp =================================================================== --- dcplusplus/trunk/client/UploadManager.cpp 2006-10-10 07:22:32 UTC (rev 670) +++ dcplusplus/trunk/client/UploadManager.cpp 2006-10-10 08:45:25 UTC (rev 671) @@ -113,7 +113,7 @@ return false; } - free = (size <= (int64_t)(SETTING(SET_MINISLOT_SIZE) * 1024) ); + free = free || (size <= (int64_t)(SETTING(SET_MINISLOT_SIZE) * 1024) ); f->setPos(start); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |