Patch from Manfred: Make dbProps properties case sensitive
This commit is contained in:
parent
06ded876ca
commit
2a7fe39e24
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ public final class Application implements IPathElement, Runnable {
|
||||||
// create app-level db sources
|
// create app-level db sources
|
||||||
File dbpropfile = new File(appDir, "db.properties");
|
File dbpropfile = new File(appDir, "db.properties");
|
||||||
|
|
||||||
dbProps = new SystemProperties(dbpropfile.getAbsolutePath(), sysDbProps);
|
dbProps = new SystemProperties(dbpropfile.getAbsolutePath(), sysDbProps, false);
|
||||||
|
|
||||||
// the passwd file, to be used with the authenticate() function
|
// the passwd file, to be used with the authenticate() function
|
||||||
CryptFile parentpwfile = null;
|
CryptFile parentpwfile = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue