Now lasso_lib_request_authn_context_new() returns LassoLibRequestAuthnContex* instead of LassoNode*.

This commit is contained in:
Nicolas Clapies 2005-02-10 13:53:36 +00:00
parent 25a54477a0
commit 6f87bd45a9
3 changed files with 3 additions and 4 deletions

View File

@ -141,8 +141,7 @@ init_from_query(LassoNode *node, char **query_fields)
{
LassoLibAuthnRequest *request = LASSO_LIB_AUTHN_REQUEST(node);
request->RequestAuthnContext = LASSO_LIB_REQUEST_AUTHN_CONTEXT(
lasso_lib_request_authn_context_new());
request->RequestAuthnContext = lasso_lib_request_authn_context_new();
/* XXX needs code for Scoping, IDPList, IDPEntries... */
lasso_node_init_from_query_fields(node, query_fields);
if (request->RequestAuthnContext->AuthnContextClassRef == NULL &&

View File

@ -113,7 +113,7 @@ lasso_lib_request_authn_context_get_type()
*
* Return value: a newly created #LassoLibRequestAuthnContext object
**/
LassoNode*
LassoLibRequestAuthnContext*
lasso_lib_request_authn_context_new()
{
return g_object_new(LASSO_TYPE_LIB_REQUEST_AUTHN_CONTEXT, NULL);

View File

@ -67,7 +67,7 @@ struct _LassoLibRequestAuthnContextClass {
};
LASSO_EXPORT GType lasso_lib_request_authn_context_get_type(void);
LASSO_EXPORT LassoNode* lasso_lib_request_authn_context_new(void);
LASSO_EXPORT LassoLibRequestAuthnContext* lasso_lib_request_authn_context_new(void);
#ifdef __cplusplus
}