diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2004-12-07 16:23:50 +0000 |
---|---|---|
committer | Frederic Peters <fpeters@entrouvert.com> | 2004-12-07 16:23:50 +0000 |
commit | db9b04a96d3c4d3b07706260ea128b7350151386 (patch) | |
tree | 077ba658f7fad27d3e309e593090be7f304ef733 /lasso/xml/lib_authn_request_envelope.c | |
parent | ad5bc81d0e724dc3a9bc50848251326beb88c012 (diff) | |
download | lasso-db9b04a96d3c4d3b07706260ea128b7350151386.tar.gz lasso-db9b04a96d3c4d3b07706260ea128b7350151386.tar.xz lasso-db9b04a96d3c4d3b07706260ea128b7350151386.zip |
another round on snippets; no longer multiply types for content transformation
(CONTENT_BOOLEAN, ATTRIBUTE_BOOLEAN, CONTENT_INTEGER, ATTRIBUTE_INTEGER...),
instead does something like this: SNIPPET_ATTRIBUTE | SNIPPET_INTEGER (other
combinations allowed)
Diffstat (limited to 'lasso/xml/lib_authn_request_envelope.c')
-rw-r--r-- | lasso/xml/lib_authn_request_envelope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/xml/lib_authn_request_envelope.c b/lasso/xml/lib_authn_request_envelope.c index 0b13e689..1b6145cc 100644 --- a/lasso/xml/lib_authn_request_envelope.c +++ b/lasso/xml/lib_authn_request_envelope.c @@ -75,7 +75,7 @@ static struct XmlSnippet schema_snippets[] = { G_STRUCT_OFFSET(LassoLibAuthnRequestEnvelope, AssertionConsumerServiceURL) }, { "IDPList", SNIPPET_NODE, G_STRUCT_OFFSET(LassoLibAuthnRequestEnvelope, IDPList) }, - { "IsPassive", SNIPPET_CONTENT_BOOL, + { "IsPassive", SNIPPET_CONTENT | SNIPPET_BOOLEAN, G_STRUCT_OFFSET(LassoLibAuthnRequestEnvelope, IsPassive) }, { NULL, 0, 0 } }; |