Do not ignore case (i.e. switch property names to lower case) for db properties.

This commit is contained in:
hns 2005-07-12 09:40:26 +00:00
parent 3b539848c0
commit eafca524bc

View file

@ -259,7 +259,7 @@ public final class Application implements IPathElement, Runnable {
eventLogName = props.getProperty("eventLog", "helma."+name+".event");
// create app-level db sources
dbProps = new ResourceProperties(this, "db.properties", sysDbProps);
dbProps = new ResourceProperties(this, "db.properties", sysDbProps, false);
// the passwd file, to be used with the authenticate() function
CryptResource parentpwfile = null;