This commit is contained in:
Shinsuke Sugaya 2018-07-24 06:31:36 +09:00
parent 280cd5e415
commit ff9683a49a

View file

@ -64,7 +64,7 @@ public class WebAuthentication extends BsWebAuthentication {
return new DigestScheme();
} else if (Constants.NTLM.equals(scheme)) {
final Properties props = new Properties();
webConfig.getConfigParameterMap(ConfigName.CONFIG).entrySet().stream().filter(e -> e.getKey().startsWith("jcifs."))
getWebConfig().getConfigParameterMap(ConfigName.CONFIG).entrySet().stream().filter(e -> e.getKey().startsWith("jcifs."))
.forEach(e -> {
props.setProperty(e.getKey(), e.getValue());
});