summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2012-05-05 22:52:15 +0200
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2012-05-05 22:52:15 +0200
commite8e91cbd07caad62d61c0d6ca8226b0111bf3444 (patch)
tree1281a1c938bc84e3c679f841b1976da869c11c99
parent8740ef5057c1575e6806fdc339e6a67977cb119d (diff)
downloadlasso-e8e91cbd07caad62d61c0d6ca8226b0111bf3444.tar.gz
lasso-e8e91cbd07caad62d61c0d6ca8226b0111bf3444.tar.xz
lasso-e8e91cbd07caad62d61c0d6ca8226b0111bf3444.zip
[xml] fix wrong forward declaration
-rw-r--r--lasso/xml/xml.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/xml/xml.h b/lasso/xml/xml.h
index 5b2ac4c8..34a1caa8 100644
--- a/lasso/xml/xml.h
+++ b/lasso/xml/xml.h
@@ -194,10 +194,10 @@ LASSO_EXPORT gchar* lasso_get_prefix_for_idwsf2_dst_service_href(const gchar *hr
LASSO_EXPORT char* lasso_node_debug(LassoNode *node, int level);
-typedef struct _LassoKey LassoKey;
+struct _LassoKey;
LASSO_EXPORT char* lasso_node_export_to_saml2_query(LassoNode *node, const char *param_name, const
- char *url, LassoKey *key);
+ char *url, struct _LassoKey *key);
#ifdef __cplusplus
}