From e1bdad1e57f076f868af592ab0d68a12b37e94ef Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 10 Jul 2007 07:46:58 +0000 Subject: (svn r10498) -Fix [FS#1008]: remove inconsistency between a warning and the actual behaviour. --- src/network/network.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/network') diff --git a/src/network/network.cpp b/src/network/network.cpp index 5b7ab937c..afb217ed2 100644 --- a/src/network/network.cpp +++ b/src/network/network.cpp @@ -1470,8 +1470,7 @@ void NetworkShutDown() bool IsNetworkCompatibleVersion(const char *other) { extern const char _openttd_revision[]; - return strncmp(NOREV_STRING, other, NETWORK_REVISION_LENGTH - 1) == 0 || - strncmp(_openttd_revision, other, NETWORK_REVISION_LENGTH - 1) == 0; + return strncmp(_openttd_revision, other, NETWORK_REVISION_LENGTH - 1) == 0; } #ifdef DEBUG_DUMP_COMMANDS -- cgit v1.2.3-54-g00ecf