2009-02-28 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Made the upper value of --max-concurrent-downloads options
	unlimited.
	* src/OptionHandlerFactory.cc
pull/1/head
Tatsuhiro Tsujikawa 2009-02-28 09:36:48 +00:00
parent 1c15b5373c
commit cffb6be91a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-02-28 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Made the upper value of --max-concurrent-downloads options unlimited.
* src/OptionHandlerFactory.cc
2009-02-28 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed the bug that disk writer is not created even if it shares

View File

@ -265,7 +265,7 @@ OptionHandlers OptionHandlerFactory::createOptionHandlers()
(PREF_MAX_CONCURRENT_DOWNLOADS,
TEXT_MAX_CONCURRENT_DOWNLOADS,
"5",
1, 45,
1, -1,
'j'));
op->addTag(TAG_BASIC);
handlers.push_back(op);