From 369aff31c25c7a601d82d52b8287c7c973ff016f Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 13 Sep 2008 15:54:52 +0000 Subject: [PATCH] 2008-09-14 Tatsuhiro Tsujikawa Call Download::setNoWait(true) to execute newly created command without a pause. * src/AbstractCommand.cc --- ChangeLog | 6 ++++++ src/AbstractCommand.cc | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6707c696b..65be06cca 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 b29de5818..874fe5aa8 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); }