summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-12-30 19:56:12 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-12-30 19:56:12 +0000
commit4f8d34a9eee50fdf7513c149a0e8dd58157e4b73 (patch)
tree15a800436641bae215a427cf5665cb011e33f6d8
parent97cd445ee361cf7da4051e81005cf59fd34fcffd (diff)
implemented _destroy for LassoService (WSF thing, but that's just a call to
lasso_node_destroy)
-rw-r--r--lasso/id-ff/service.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/id-ff/service.c b/lasso/id-ff/service.c
index d667a6be..aa77efa5 100644
--- a/lasso/id-ff/service.c
+++ b/lasso/id-ff/service.c
@@ -38,7 +38,7 @@ lasso_service_dump(LassoService *service)
void
lasso_service_destroy(LassoService *service)
{
- /* XXX do nothing */
+ lasso_node_destroy(LASSO_NODE(service));
}
/*****************************************************************************/
@@ -49,7 +49,7 @@ static struct XmlSnippet schema_snippets[] = {
{ "type", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoService, type) },
{ "endpoint", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoService, endpoint) },
{ "ServiceDumpVersion", SNIPPET_ATTRIBUTE | SNIPPET_INTEGER,
- G_STRUCT_OFFSET(LassoService, ServiceDumpVersion) },
+ G_STRUCT_OFFSET(LassoService, ServiceDumpVersion) },
{ NULL, 0, 0}
};