fix compiler error in bitcoinrpc RE: boost::system

(Partial of 2232717cba9e9f06a01e8f37bcea4e79ee65205f)
This commit is contained in:
Gavin Andresen 2012-04-11 14:00:48 -04:00 committed by Luke Dashjr
parent 824e8dde8b
commit 813dc92cdc

View File

@ -2224,7 +2224,7 @@ void ThreadRPCServer2(void* parg)
acceptor.bind(endpoint);
acceptor.listen(socket_base::max_connections);
}
catch(system::system_error &e)
catch(boost::system::system_error &e)
{
HACK_SHUTDOWN = true;
ThreadSafeMessageBox(strprintf(_("An error occured while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()),