mirror of https://github.com/aria2/aria2
2008-11-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Corrected catched exception type. * src/ServerStatMan.ccpull/1/head
parent
928e228c89
commit
e6707208d1
|
@ -1,3 +1,8 @@
|
||||||
|
2008-11-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
|
Corrected catched exception type.
|
||||||
|
* src/ServerStatMan.cc
|
||||||
|
|
||||||
2008-11-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
2008-11-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
DNSCache is now part of DownloadEngine.
|
DNSCache is now part of DownloadEngine.
|
||||||
|
|
|
@ -114,7 +114,7 @@ bool ServerStatMan::load(std::istream& in)
|
||||||
sstat->setLastUpdated(Time(Util::parseInt(m[S_LAST_UPDATED])));
|
sstat->setLastUpdated(Time(Util::parseInt(m[S_LAST_UPDATED])));
|
||||||
sstat->setStatus(m[S_STATUS]);
|
sstat->setStatus(m[S_STATUS]);
|
||||||
add(sstat);
|
add(sstat);
|
||||||
} catch(RecoverableException* e) {
|
} catch(RecoverableException& e) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue