summaryrefslogtreecommitdiffstats
path: root/lasso/xml/lib_request_authn_context.h
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2005-01-08 15:52:30 +0000
committerFrederic Peters <fpeters@entrouvert.com>2005-01-08 15:52:30 +0000
commitbfcb490be39511c5357638e121e96e49bd6dfd6b (patch)
tree4a044d9c2e1de1e4bf77717f26d064bbd2ebe584 /lasso/xml/lib_request_authn_context.h
parenta110f6284980d31d09a59ede113ddeb41c8a2396 (diff)
downloadlasso-bfcb490be39511c5357638e121e96e49bd6dfd6b.tar.gz
lasso-bfcb490be39511c5357638e121e96e49bd6dfd6b.tar.xz
lasso-bfcb490be39511c5357638e121e96e49bd6dfd6b.zip
turned a bunch of unbounded elements into GList*
Diffstat (limited to 'lasso/xml/lib_request_authn_context.h')
-rw-r--r--lasso/xml/lib_request_authn_context.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lasso/xml/lib_request_authn_context.h b/lasso/xml/lib_request_authn_context.h
index 40826320..ed1dd412 100644
--- a/lasso/xml/lib_request_authn_context.h
+++ b/lasso/xml/lib_request_authn_context.h
@@ -55,12 +55,12 @@ struct _LassoLibRequestAuthnContext {
/*< public >*/
/* <xs:element name="AuthnContextClassRef" type="xs:anyURI" maxOccurs="unbounded"/> */
- char *AuthnContextClassRef; /* XXX: should actually be a list */
+ GList *AuthnContextClassRef;
/* <xs:element name="AuthnContextStatementRef" type="xs:anyURI" maxOccurs="unbounded"/> */
- char *AuthnContextStatementRef; /* XXX: idem */
+ GList *AuthnContextStatementRef;
/* <xs:element name="AuthnContextComparison" type="AuthnContextComparisonType"
* minOccurs="0"/> */
- char *AuthnContextComparisonType; /* XXX should be enum ? */
+ char *AuthnContextComparisonType;
};
struct _LassoLibRequestAuthnContextClass {