diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2005-10-05 16:01:13 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2005-10-05 16:01:13 +0000 |
| commit | be9f5312c0ea57c4cf34266be5da795a6d2094d9 (patch) | |
| tree | f53445cebcc9ae53275141fc49782d689adc6f7d | |
| parent | 1182c5d861f948f1745bedef85e395707b148aad (diff) | |
Verify if a saml security authentication is available.
| -rw-r--r-- | lasso/id-wsf/data_service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/id-wsf/data_service.c b/lasso/id-wsf/data_service.c index 7ea43b48..42c70346 100644 --- a/lasso/id-wsf/data_service.c +++ b/lasso/id-wsf/data_service.c @@ -255,7 +255,7 @@ lasso_data_service_process_query_msg(LassoDataService *service, const char *mess } /* Verify needed credential */ - if (lasso_security_mech_id_is_saml_authentication(security_mech_id) == TRUE) { + if (lasso_wsf_profile_has_saml_authentication(LASSO_WSF_PROFILE(service)) == TRUE) { int res = lasso_wsf_profile_verify_saml_authentication(LASSO_WSF_PROFILE(service)); if (res < 0) return res; |
