[java-identity-provider] 03/05: IDP-1554 Stop gratuitously lower casing the user password.
Rod Widdowson
rdw at steadingsoftware.com
Fri Feb 21 11:20:08 EST 2020
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=60a4b76d144228520648cca4edb70156201a8163
commit 60a4b76d144228520648cca4edb70156201a8163
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Feb 21 16:16:13 2020 +0000
IDP-1554 Stop gratuitously lower casing the user password.
https://issues.shibboleth.net/jira/browse/IDP-1554
---
idp-installer/src/main/wix/scripts/shib_write_configs.vbs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-installer/src/main/wix/scripts/shib_write_configs.vbs b/idp-installer/src/main/wix/scripts/shib_write_configs.vbs
index 57c517b..06d93f6 100644
--- a/idp-installer/src/main/wix/scripts/shib_write_configs.vbs
+++ b/idp-installer/src/main/wix/scripts/shib_write_configs.vbs
@@ -38,7 +38,7 @@ ConfigureAd = LCase(msiProperties(5))
if ConfigureAd = "true" then
AdDomain = LCase(msiProperties(6))
AdUser = LCase(msiProperties(7))
- AdPass = LCase(msiProperties(8))
+ AdPass = msiProperties(8)
AdUseGC = LCase(msiProperties(9))
end if
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list