summaryrefslogtreecommitdiffstats
path: root/lasso/Attic/protocols/response.c
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-31 20:34:46 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-31 20:34:46 +0000
commit0ecf1691ba1f1590b480ee53a6af0c0dbb66424a (patch)
treeb8bee0ef463e7bdb376789c19f5d0d77f2fcb3e9 /lasso/Attic/protocols/response.c
parented561ce190fb10c4dc35e8c23c39c7292f14e5bc (diff)
downloadlasso-0ecf1691ba1f1590b480ee53a6af0c0dbb66424a.tar.gz
lasso-0ecf1691ba1f1590b480ee53a6af0c0dbb66424a.tar.xz
lasso-0ecf1691ba1f1590b480ee53a6af0c0dbb66424a.zip
Added a new argument 'err' in 4 methods of the LassoNode class:
lasso_node_get_attr lasso_node_get_child lasso_node_get_child_content lasso_node_get_content for reporting errors.
Diffstat (limited to 'lasso/Attic/protocols/response.c')
-rw-r--r--lasso/Attic/protocols/response.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lasso/Attic/protocols/response.c b/lasso/Attic/protocols/response.c
index 4a159157..29273b91 100644
--- a/lasso/Attic/protocols/response.c
+++ b/lasso/Attic/protocols/response.c
@@ -129,7 +129,8 @@ lasso_response_new_from_export(xmlChar *buffer,
break;
case lassoNodeExportTypeSoap:
soap_node = lasso_node_new_from_dump(buffer);
- response_node = lasso_node_get_child(soap_node, "Response", lassoSamlProtocolHRef);
+ response_node = lasso_node_get_child(soap_node, "Response",
+ lassoSamlProtocolHRef, NULL);
export = lasso_node_export(response_node);
lasso_node_import(response, export);
xmlFree(export);