diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2005-01-08 15:52:30 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2005-01-08 15:52:30 +0000 |
| commit | bfcb490be39511c5357638e121e96e49bd6dfd6b (patch) | |
| tree | 4a044d9c2e1de1e4bf77717f26d064bbd2ebe584 /lasso/xml/lib_request_authn_context.h | |
| parent | a110f6284980d31d09a59ede113ddeb41c8a2396 (diff) | |
| download | lasso-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.h | 6 |
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 { |
