8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 01:23:03 +01:00

Fix comparison typo so that we no longer overwrite newer versions of gds32.dll in <sys>.

This commit is contained in:
paul_reeves 2004-04-21 10:30:14 +00:00
parent 092ef1da76
commit 06e6a28f13

View File

@ -126,7 +126,7 @@ USHORT CLIENT_install(const TEXT * rootdir, USHORT client, bool sw_force,
// The target DLL already exists
if (! sw_force)
{
if (targetverMS > targetverMS)
if (targetverMS > newverMS)
return FB_INSTALL_NEWER_VERSION_FOUND;
if (targetverMS == newverMS && targetverLS > newverLS)
return FB_INSTALL_NEWER_VERSION_FOUND;