[java-identity-provider] branch main updated: Missing string delimiters around property expressions.

Scott Cantor cantor.2 at osu.edu
Tue Nov 3 18:00:52 UTC 2020


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=5ebfba539005e83e9dde16b3314140f30caeaa60

The following commit(s) were added to refs/heads/main by this push:
       new  5ebfba539 Missing string delimiters around property expressions.
5ebfba539 is described below

commit 5ebfba539005e83e9dde16b3314140f30caeaa60
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Nov 3 13:00:49 2020 -0500

    Missing string delimiters around property expressions.
---
 .../resources/net/shibboleth/idp/flows/authn/password-authn-beans.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/authn/password-authn-beans.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/authn/password-authn-beans.xml
index 11f9c1bbd..d77b96c03 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/authn/password-authn-beans.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/authn/password-authn-beans.xml
@@ -129,8 +129,8 @@
         p:id="krb5"
         p:refreshKrb5Config="#{getObject('shibboleth.authn.Krb5.RefreshConfig') ?: %{idp.authn.Krb5.refreshConfig:false}}"
         p:preserveTicket="#{getObject('shibboleth.authn.Krb5.PreserveTicket') ?: %{idp.authn.Krb5.preserveTicket:false}}"
-        p:servicePrincipal="#{getObject('shibboleth.authn.Krb5.ServicePrincipal') ?: %{idp.authn.Krb5.servicePrincipal:}}"
-        p:keytabPath="#{getObject('shibboleth.authn.Krb5.Keytab') ?: %{idp.authn.Krb5.keytab:}}" />
+        p:servicePrincipal="#{getObject('shibboleth.authn.Krb5.ServicePrincipal') ?: '%{idp.authn.Krb5.servicePrincipal:}'.trim()}"
+        p:keytabPath="#{getObject('shibboleth.authn.Krb5.Keytab') ?: '%{idp.authn.Krb5.keytab:}}'.trim()" />
 
     <bean id="ValidateUsernamePasswordAgainstLDAP" parent="shibboleth.CredentialValidator" lazy-init="true"
         class="net.shibboleth.idp.authn.impl.LDAPCredentialValidator"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list