mirror of https://github.com/aria2/aria2
Fixed the bug that a remote metalink is not processed even if
'-o foo.metalink' is specified. * src/MetalinkRequestInfo.ccpull/1/head
parent
a3afa89941
commit
a405d0238e
|
@ -69,6 +69,10 @@
|
||||||
* src/a2netcompat.h
|
* src/a2netcompat.h
|
||||||
* src/main.cc
|
* src/main.cc
|
||||||
|
|
||||||
|
Fixed the bug that prevents a remote metalink from not being processed
|
||||||
|
even if '-o foo.metalink' is specified.
|
||||||
|
* src/MetalinkRequestInfo.cc
|
||||||
|
|
||||||
2007-08-02 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
2007-08-02 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
Merged Dan's patch:
|
Merged Dan's patch:
|
||||||
|
|
1
TODO
1
TODO
|
@ -39,4 +39,3 @@
|
||||||
* used globally -> common.h
|
* used globally -> common.h
|
||||||
|
|
||||||
* replace threw with thrown
|
* replace threw with thrown
|
||||||
* fix the bug that causes a remote metalink fails.
|
|
|
@ -163,6 +163,8 @@ RequestInfos MetalinkRequestInfo::execute() {
|
||||||
#endif // ENABLE_MESSAGE_DIGEST
|
#endif // ENABLE_MESSAGE_DIGEST
|
||||||
groups.push_front(rg);
|
groups.push_front(rg);
|
||||||
}
|
}
|
||||||
|
// clear PREF_OUT, because PREF_OUT is a filename for metalink file itself.
|
||||||
|
op->put(PREF_OUT, "");
|
||||||
MultiUrlRequestInfoHandle reqInfo = new MultiUrlRequestInfo(groups, op);
|
MultiUrlRequestInfoHandle reqInfo = new MultiUrlRequestInfo(groups, op);
|
||||||
nextReqInfos.push_back(reqInfo);
|
nextReqInfos.push_back(reqInfo);
|
||||||
} catch(RecoverableException* ex) {
|
} catch(RecoverableException* ex) {
|
||||||
|
|
Loading…
Reference in New Issue