summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-05-02 21:51:09 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-05-02 21:51:09 +0000
commitfc6b86bcbee58eb3a56555ded0ca2085a3b40dc7 (patch)
tree4ad62ce0c8e3a14cc5e5385aabcdba409a3383a9
parentb4d1094c1e4def357062bc17397250d379335f48 (diff)
downloadlasso-fc6b86bcbee58eb3a56555ded0ca2085a3b40dc7.tar.gz
lasso-fc6b86bcbee58eb3a56555ded0ca2085a3b40dc7.tar.xz
lasso-fc6b86bcbee58eb3a56555ded0ca2085a3b40dc7.zip
a bad cast fix
-rw-r--r--lasso/Attic/protocols/name_identifier_mapping_response.c7
1 files 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);