2008-11-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Corrected catched exception type.
	* src/ServerStatMan.cc
pull/1/head
Tatsuhiro Tsujikawa 2008-11-03 10:03:22 +00:00
parent 928e228c89
commit e6707208d1
2 changed files with 6 additions and 1 deletions

View File

@ -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>
DNSCache is now part of DownloadEngine.

View File

@ -114,7 +114,7 @@ bool ServerStatMan::load(std::istream& in)
sstat->setLastUpdated(Time(Util::parseInt(m[S_LAST_UPDATED])));
sstat->setStatus(m[S_STATUS]);
add(sstat);
} catch(RecoverableException* e) {
} catch(RecoverableException& e) {
continue;
}
}