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

Backported fix for CORE-2376: Change default for authentication method parameter

This commit is contained in:
alexpeshkoff 2009-04-09 09:03:27 +00:00
parent eb3a3ed777
commit 9f07e4de54
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@
# #
# Type: string # Type: string
# #
#Authentication = mixed #Authentication = native
# ---------------------------- # ----------------------------
# Number of cached database pages # Number of cached database pages

View File

@ -122,7 +122,7 @@ const ConfigImpl::ConfigEntry ConfigImpl::entries[] =
{TYPE_STRING, "GCPolicy", (ConfigValue) GCPolicyDefault}, // garbage collection policy {TYPE_STRING, "GCPolicy", (ConfigValue) GCPolicyDefault}, // garbage collection policy
{TYPE_BOOLEAN, "Redirection", (ConfigValue) false}, {TYPE_BOOLEAN, "Redirection", (ConfigValue) false},
{TYPE_BOOLEAN, "OldColumnNaming", (ConfigValue) false}, // if true use old style concatenation {TYPE_BOOLEAN, "OldColumnNaming", (ConfigValue) false}, // if true use old style concatenation
{TYPE_STRING, "Authentication", (ConfigValue) AmMixed}, // use native, trusted or mixed {TYPE_STRING, "Authentication", (ConfigValue) AmNative}, // use native, trusted or mixed
{TYPE_INTEGER, "DatabaseGrowthIncrement", (ConfigValue) 128 * 1048576}, // bytes {TYPE_INTEGER, "DatabaseGrowthIncrement", (ConfigValue) 128 * 1048576}, // bytes
{TYPE_INTEGER, "MaxFileSystemCache", (ConfigValue) 65536}, // page buffers {TYPE_INTEGER, "MaxFileSystemCache", (ConfigValue) 65536}, // page buffers
{TYPE_BOOLEAN, "RelaxedAliasChecking", (ConfigValue) false} // if true relax strict alias checking rules in DSQL a bit {TYPE_BOOLEAN, "RelaxedAliasChecking", (ConfigValue) false} // if true relax strict alias checking rules in DSQL a bit