From 5ebe720a8a4eb455742e38f6b5f4de9c1fedbe88 Mon Sep 17 00:00:00 2001 From: hvlad Date: Fri, 26 Jan 2007 22:17:30 +0000 Subject: [PATCH] Fixed CORE-1110 : isc_get_client_xxx_version not fully compatible with IB's gds32.dll --- src/jrd/utl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jrd/utl.cpp b/src/jrd/utl.cpp index d6471978ea..e978b48c5e 100644 --- a/src/jrd/utl.cpp +++ b/src/jrd/utl.cpp @@ -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); }