diff options
author | Nicolas Clapies <nclapies@entrouvert.com> | 2005-11-15 11:10:26 +0000 |
---|---|---|
committer | Nicolas Clapies <nclapies@entrouvert.com> | 2005-11-15 11:10:26 +0000 |
commit | 5a06692cf457228ba9b71873f89dc5bac107d68f (patch) | |
tree | 50b581bfccc6ad2ae0c13e07f9d2abfb8ba95d61 /lasso/xml/soap_fault.c | |
parent | 1bcc24132bf6ee6dfec94022c6288761270a46ee (diff) | |
download | lasso-5a06692cf457228ba9b71873f89dc5bac107d68f.tar.gz lasso-5a06692cf457228ba9b71873f89dc5bac107d68f.tar.xz lasso-5a06692cf457228ba9b71873f89dc5bac107d68f.zip |
Fixed snippet type and name of Detail attribute.
Diffstat (limited to 'lasso/xml/soap_fault.c')
-rw-r--r-- | lasso/xml/soap_fault.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/xml/soap_fault.c b/lasso/xml/soap_fault.c index 5d3f783d..5559747f 100644 --- a/lasso/xml/soap_fault.c +++ b/lasso/xml/soap_fault.c @@ -57,7 +57,7 @@ static struct XmlSnippet schema_snippets[] = { { "faultcode", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoSoapFault, faultcode) }, { "faultstring", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoSoapFault, faultstring) }, - { "detail", SNIPPET_LIST_NODES, G_STRUCT_OFFSET(LassoSoapFault, detail) }, + { "Detail", SNIPPET_NODE, G_STRUCT_OFFSET(LassoSoapFault, Detail) }, { NULL, 0, 0} }; @@ -71,7 +71,7 @@ instance_init(LassoSoapFault *node) node->faultcode = NULL; node->faultstring = NULL; node->faultactor = NULL; - node->detail = NULL; + node->Detail = NULL; } static void |