diff options
| author | Damien Laniel <dlaniel@entrouvert.com> | 2007-06-11 15:27:50 +0000 |
|---|---|---|
| committer | Damien Laniel <dlaniel@entrouvert.com> | 2007-06-11 15:27:50 +0000 |
| commit | 800f145069e263873d2680ca66b5129bbaef301d (patch) | |
| tree | cf5628a2a4634eee409cc2937e5b480a1ffc505b | |
| parent | fa76cfccf4192644ec1ad2f99b090885a95e593c (diff) | |
fixed warnings
| -rw-r--r-- | lasso/id-wsf-2.0/data_service.c | 3 | ||||
| -rw-r--r-- | lasso/id-wsf-2.0/discovery.c | 2 | ||||
| -rw-r--r-- | lasso/saml-2.0/login.c | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lasso/id-wsf-2.0/data_service.c b/lasso/id-wsf-2.0/data_service.c index 16e74b42..40e56631 100644 --- a/lasso/id-wsf-2.0/data_service.c +++ b/lasso/id-wsf-2.0/data_service.c @@ -226,6 +226,7 @@ lasso_idwsf2_data_service_process_query_response_msg(LassoIdWsf2DataService *ser const gchar *message) { LassoWsf2Profile *profile = LASSO_WSF2_PROFILE(service); + LassoIdWsf2UtilResponse *response; int res; g_return_val_if_fail(LASSO_IS_IDWSF2_DATA_SERVICE(service), @@ -242,7 +243,7 @@ lasso_idwsf2_data_service_process_query_response_msg(LassoIdWsf2DataService *ser } /* Check response status code */ - response = LASSO_IDWSF2_DSTREF_QUERY_RESPONSE(profile->response); + response = LASSO_IDWSF2_UTIL_RESPONSE(profile->response); if (response->Status == NULL || response->Status->code == NULL) { return LASSO_PROFILE_ERROR_MISSING_STATUS_CODE; } diff --git a/lasso/id-wsf-2.0/discovery.c b/lasso/id-wsf-2.0/discovery.c index 3d57d117..ed48251e 100644 --- a/lasso/id-wsf-2.0/discovery.c +++ b/lasso/id-wsf-2.0/discovery.c @@ -594,7 +594,7 @@ lasso_idwsf2_discovery_process_query_response_msg(LassoIdWsf2Discovery *discover } /* Check response status code */ - response = LASSO_IDWSF2_DISCO_SVC_MD_ASSOCIATION_ADD_RESPONSE(profile->response); + response = LASSO_IDWSF2_DISCO_QUERY_RESPONSE(profile->response); if (response->Status == NULL || response->Status->code == NULL) { return LASSO_PROFILE_ERROR_MISSING_STATUS_CODE; } diff --git a/lasso/saml-2.0/login.c b/lasso/saml-2.0/login.c index 462492dc..fee76f92 100644 --- a/lasso/saml-2.0/login.c +++ b/lasso/saml-2.0/login.c @@ -670,7 +670,6 @@ lasso_saml20_login_assertion_add_discovery(LassoLogin *login, LassoSaml2Assertio security_context = LASSO_IDWSF2_DISCO_SECURITY_CONTEXT( lasso_idwsf2_disco_security_context_new()); - /* FIXME */ security_context->SecurityMechID = g_list_append( security_context->SecurityMechID, g_strdup(LASSO_SECURITY_MECH_TLS_BEARER)); security_context->Token = g_list_append(security_context->Token, sec_token); |
