From fc6b86bcbee58eb3a56555ded0ca2085a3b40dc7 Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Sun, 2 May 2004 21:51:09 +0000 Subject: a bad cast fix --- lasso/Attic/protocols/name_identifier_mapping_response.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lasso/Attic/protocols/name_identifier_mapping_response.c b/lasso/Attic/protocols/name_identifier_mapping_response.c index 88088ba2..62989b3a 100644 --- a/lasso/Attic/protocols/name_identifier_mapping_response.c +++ b/lasso/Attic/protocols/name_identifier_mapping_response.c @@ -68,9 +68,10 @@ GType lasso_name_identifier_mapping_response_get_type() { LassoNode* lasso_name_identifier_mapping_response_new(const xmlChar *providerID, - const xmlChar *statusCodeValue, - LassoNode *request) + const xmlChar *statusCodeValue, + LassoNode *request) { + /* FIXME : change request type */ LassoNode *response, *ss, *ssc; xmlChar *inResponseTo, *recipient, *relayState; @@ -109,7 +110,7 @@ lasso_name_identifier_mapping_response_new(const xmlChar *providerID, lasso_samlp_status_set_statusCode(LASSO_SAMLP_STATUS(ss), LASSO_SAMLP_STATUS_CODE(ssc)); - lasso_lib_name_identifier_mapping_response_set_status(LASSO_SAMLP_RESPONSE_ABSTRACT(response), + lasso_lib_name_identifier_mapping_response_set_status(LASSO_LIB_NAME_IDENTIFIER_MAPPING_RESPONSE(response), LASSO_SAMLP_STATUS(ss)); return (response); -- cgit