mirror of https://github.com/aria2/aria2
2009-02-28 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Made the upper value of --max-concurrent-downloads options unlimited. * src/OptionHandlerFactory.ccpull/1/head
parent
1c15b5373c
commit
cffb6be91a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue