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

Fixed CORE-1110 : isc_get_client_xxx_version not fully compatible with IB's gds32.dll

This commit is contained in:
hvlad 2007-01-26 22:17:30 +00:00
parent 5f9ee9c233
commit 5ebe720a8a

View File

@ -948,7 +948,7 @@ void API_ROUTINE isc_get_client_version(SCHAR *buffer)
**************************************/
if (buffer)
strcpy(buffer, FB_VERSION);
strcpy(buffer, ISC_VERSION);
}
@ -964,7 +964,7 @@ int API_ROUTINE isc_get_client_major_version()
*
**************************************/
return atoi(FB_MAJOR_VER);
return atoi(ISC_MAJOR_VER);
}
@ -980,7 +980,7 @@ int API_ROUTINE isc_get_client_minor_version()
*
**************************************/
return atoi(FB_MINOR_VER);
return atoi(ISC_MINOR_VER);
}