Browse Source

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

	Made the upper value of --max-concurrent-downloads options
	unlimited.
	* src/OptionHandlerFactory.cc
Tatsuhiro Tsujikawa 16 years ago
parent
commit
cffb6be91a
2 changed files with 6 additions and 1 deletions
  1. 5 0
      ChangeLog
  2. 1 1
      src/OptionHandlerFactory.cc

+ 5 - 0
ChangeLog

@@ -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

+ 1 - 1
src/OptionHandlerFactory.cc

@@ -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);