1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 21:13:05 +01:00

Fixed OS X Build

This commit is contained in:
LRFLEW
2016-05-23 04:14:06 -05:00
committed by Michał Janiszewski
parent 31e8c9bbf9
commit 5d5c10f99f
2 changed files with 385 additions and 213 deletions

View File

@@ -2013,7 +2013,7 @@ void Network::Server_Handle_AUTH(NetworkConnection& connection, NetworkPacket& p
const std::string hash = connection.key.PublicKeyHash();
Server_Client_Joined(name, hash, connection);
} else
if (!connection.authstatus != NETWORK_AUTH_REQUIREPASSWORD) {
if (connection.authstatus != NETWORK_AUTH_REQUIREPASSWORD) {
log_error("Unkown failure (%d) while authenticating client", connection.authstatus);
}
Server_Send_AUTH(connection);