diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2005-03-29 08:27:03 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2005-03-29 08:27:03 +0000 |
| commit | ddd2cbefc99615208eee8900776b2bb3ee06c757 (patch) | |
| tree | e824999abb217d05a2dfca1dddaa60649fa13d46 | |
| parent | a7a9f57fb48c46ab9fa68eb957428d73f49ad659 (diff) | |
| download | lasso-ddd2cbefc99615208eee8900776b2bb3ee06c757.tar.gz lasso-ddd2cbefc99615208eee8900776b2bb3ee06c757.tar.xz lasso-ddd2cbefc99615208eee8900776b2bb3ee06c757.zip | |
bring back LassoSamlAssertion
| -rw-r--r-- | lasso/id-ff/login.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lasso/id-ff/login.c b/lasso/id-ff/login.c index 10c37db4..abf56fe0 100644 --- a/lasso/id-ff/login.c +++ b/lasso/id-ff/login.c @@ -900,6 +900,9 @@ lasso_login_build_response_msg(LassoLogin *login, gchar *remote_providerID) if (profile->session && ret == 0) { /* get assertion in session and add it in response */ + LassoSamlAssertion *assertion; + LassoSamlpStatus *status; + assertion = lasso_session_get_assertion(profile->session, profile->remote_providerID); if (assertion) { @@ -909,7 +912,6 @@ lasso_login_build_response_msg(LassoLogin *login, gchar *remote_providerID) LASSO_SAML_STATUS_CODE_SUCCESS); lasso_session_remove_status(profile->session, remote_providerID); } else { - LassoSamlpStatus *status; /* no assertion, get back status code */ status = lasso_session_get_status(profile->session, remote_providerID); |
