Projet

Général

Profil

0001-saml-2.0-set-NotOnOrAfter-on-the-Conditions-element-.patch

Frédéric Péters, 11 août 2014 09:09

Télécharger (1,01 ko)

Voir les différences:

Subject: [PATCH] saml-2.0: set NotOnOrAfter on the Conditions element (#5248)

This is actually required for interoperability with Dropbox SAML support.
 lasso/saml-2.0/login.c | 1 +
 1 file changed, 1 insertion(+)
lasso/saml-2.0/login.c
744 744
	assertion->Issuer = LASSO_SAML2_NAME_ID(lasso_saml2_name_id_new_with_string(
745 745
			LASSO_PROVIDER(profile->server)->ProviderID));
746 746
	assertion->Conditions = LASSO_SAML2_CONDITIONS(lasso_saml2_conditions_new());
747
	lasso_assign_string(assertion->Conditions->NotOnOrAfter, notOnOrAfter);
747 748

  
748 749
	audience_restriction = LASSO_SAML2_AUDIENCE_RESTRICTION(
749 750
			lasso_saml2_audience_restriction_new());
750
-