From: <fir...@us...> - 2015-11-24 00:11:29
|
Revision: 62600 http://sourceforge.net/p/firebird/code/62600 Author: firebirds Date: 2015-11-24 00:11:26 +0000 (Tue, 24 Nov 2015) Log Message: ----------- nightly update Modified Paths: -------------- firebird/trunk/ChangeLog firebird/trunk/src/jrd/build_no.h firebird/trunk/src/misc/writeBuildNum.sh Modified: firebird/trunk/ChangeLog =================================================================== --- firebird/trunk/ChangeLog 2015-11-23 16:08:38 UTC (rev 62599) +++ firebird/trunk/ChangeLog 2015-11-24 00:11:26 UTC (rev 62600) @@ -1,3 +1,20 @@ + 2015-11-23 16:08 hvlad + M src/remote/server/server.cpp +Avoid reporting of "SERVER/process_packet: broken port, server exiting" message for already detached port (affects CS only) + + 2015-11-23 16:06 hvlad + M src/remote/os/win32/xnet.cpp + M src/remote/os/win32/xnet.h +Refactor xnet module to separate client and server parts (endpoints). +It fixed bug CORE-5029 : AV in fbclient when multi-threaded application uses XNET protocol +and allows in the future to implement client ability to specify target server endpoint name +at connection level (currently it is set in firebird.conf). + + 2015-11-23 09:57 alexpeshkoff + M src/auth/SecureRemotePassword/server/SrpServer.cpp + M src/auth/SecurityDatabase/LegacyServer.cpp +Fixed CORE-5026: Firebird authentication gives up after first common plugin + 2015-11-20 10:17 hvlad M src/jrd/cch.cpp M src/jrd/jrd.cpp Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2015-11-23 16:08:38 UTC (rev 62599) +++ firebird/trunk/src/jrd/build_no.h 2015-11-24 00:11:26 UTC (rev 62600) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:32192 + FORMAL BUILD NUMBER:32195 */ -#define PRODUCT_VER_STRING "3.0.0.32192" -#define FILE_VER_STRING "WI-V3.0.0.32192" -#define LICENSE_VER_STRING "WI-V3.0.0.32192" -#define FILE_VER_NUMBER 3, 0, 0, 32192 +#define PRODUCT_VER_STRING "3.0.0.32195" +#define FILE_VER_STRING "WI-V3.0.0.32195" +#define LICENSE_VER_STRING "WI-V3.0.0.32195" +#define FILE_VER_NUMBER 3, 0, 0, 32195 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "32192" +#define FB_BUILD_NO "32195" #define FB_BUILD_TYPE "V" #define FB_BUILD_SUFFIX "Firebird 3.0 Release Candidate 2" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2015-11-23 16:08:38 UTC (rev 62599) +++ firebird/trunk/src/misc/writeBuildNum.sh 2015-11-24 00:11:26 UTC (rev 62600) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=32192 +BuildNum=32195 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |