Patch from Manfred: Make dbProps properties case sensitive

This commit is contained in:
hns 2004-04-30 16:04:07 +00:00
parent 06ded876ca
commit 2a7fe39e24

View file

@ -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;