diff options
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 |