Remove logically dead code.

This commit is contained in:
Jon Siwek 2013-09-25 13:37:46 -05:00
parent 4072afb363
commit 64f3bef96d
4 changed files with 3 additions and 4 deletions

View file

@ -1247,7 +1247,7 @@ bool RemoteSerializer::SendCapabilities(Peer* peer)
caps |= Peer::PID_64BIT;
caps |= Peer::NEW_CACHE_STRATEGY;
return caps ? SendToChild(MSG_CAPS, peer, 3, caps, 0, 0) : true;
return SendToChild(MSG_CAPS, peer, 3, caps, 0, 0);
}
bool RemoteSerializer::Listen(const IPAddr& ip, uint16 port, bool expect_ssl,