Made the upper value of --max-concurrent-downloads options unlimited. * src/OptionHandlerFactory.cc
@@ -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
@@ -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);