diff --git a/ChangeLog b/ChangeLog index 6707c696..65be06cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-14 Tatsuhiro Tsujikawa + + Call Download::setNoWait(true) to execute newly created command without + a pause. + * src/AbstractCommand.cc + 2008-09-10 Tatsuhiro Tsujikawa Added --max-file-not-found=NUM option. If aria2 receives `file not diff --git a/src/AbstractCommand.cc b/src/AbstractCommand.cc index b29de581..874fe5aa 100644 --- a/src/AbstractCommand.cc +++ b/src/AbstractCommand.cc @@ -189,6 +189,7 @@ void AbstractCommand::tryReserved() { _requestGroup->removeServerHost(cuid); Commands commands; _requestGroup->createNextCommand(commands, e, 1); + e->setNoWait(true); e->addCommand(commands); }