diff options
author | Matt Corallo <matt@bluematt.me> | 2012-06-28 19:31:22 +0200 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2012-06-28 19:31:22 +0200 |
commit | 460d87861368feb1ee0cfe6a080748b24f7cfcb9 (patch) | |
tree | 83dd40b14a4b2da6eb207b21a6723810fce5ba82 /src/bitcoinrpc.cpp | |
parent | 4e97a9d9eb91f87e0611c31f28e2e02a07cea8aa (diff) |
Fix build error.
Diffstat (limited to 'src/bitcoinrpc.cpp')
-rw-r--r-- | src/bitcoinrpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 48c5a738b5..de6db53982 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -2768,7 +2768,7 @@ static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol, vnThreadsRunning[THREAD_RPCLISTENER]++; // Immediately start accepting new connections, except when we're canceled or our socket is closed. - if (error != error::operation_aborted + if (error != asio::error::operation_aborted && acceptor->is_open()) RPCListen(acceptor, context, fUseSSL); |