|
From: <ale...@us...> - 2013-10-30 12:46:40
|
Revision: 58737
http://sourceforge.net/p/firebird/code/58737
Author: alexpeshkoff
Date: 2013-10-30 12:46:35 +0000 (Wed, 30 Oct 2013)
Log Message:
-----------
Fixed CORE-4241: Empty password will pass login
Modified Paths:
--------------
firebird/trunk/builds/install/misc/firebird.conf.in
firebird/trunk/src/common/config/config.cpp
Modified: firebird/trunk/builds/install/misc/firebird.conf.in
===================================================================
--- firebird/trunk/builds/install/misc/firebird.conf.in 2013-10-30 12:23:45 UTC (rev 58736)
+++ firebird/trunk/builds/install/misc/firebird.conf.in 2013-10-30 12:46:35 UTC (rev 58737)
@@ -377,7 +377,7 @@
#
# Per-database configurable.
#
-#AuthServer = Srp, Win_Sspi
+#AuthServer = Srp
#
# Per-connection and per-database configurable.
#
Modified: firebird/trunk/src/common/config/config.cpp
===================================================================
--- firebird/trunk/src/common/config/config.cpp 2013-10-30 12:23:45 UTC (rev 58736)
+++ firebird/trunk/src/common/config/config.cpp 2013-10-30 12:46:35 UTC (rev 58737)
@@ -170,7 +170,7 @@
{TYPE_INTEGER, "MaxUserTraceLogSize", (ConfigValue) 10}, // maximum size of user session trace log
{TYPE_INTEGER, "FileSystemCacheSize", (ConfigValue) 0}, // percent
{TYPE_STRING, "Providers", (ConfigValue) "Remote, " CURRENT_ENGINE ", Loopback"},
- {TYPE_STRING, "AuthServer", (ConfigValue) "Srp, Win_Sspi"},
+ {TYPE_STRING, "AuthServer", (ConfigValue) "Srp"},
{TYPE_STRING, "AuthClient", (ConfigValue) "Srp, Win_Sspi, Legacy_Auth"},
{TYPE_STRING, "UserManager", (ConfigValue) "Srp"},
{TYPE_STRING, "TracePlugin", (ConfigValue) "fbtrace"},
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|