diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:09:29 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:09:29 +0000 |
| commit | eccefdb285788d95d50077bdc4c91237df9eaf6d (patch) | |
| tree | 975e1bb5262dfeab4834244bce98680a791851ce | |
| parent | 10980073a0b4241453f85297d27d38a185d23e89 (diff) | |
| download | lasso-eccefdb285788d95d50077bdc4c91237df9eaf6d.tar.gz lasso-eccefdb285788d95d50077bdc4c91237df9eaf6d.tar.xz lasso-eccefdb285788d95d50077bdc4c91237df9eaf6d.zip | |
change content from list of LassoNode to list of xmlNode
| -rw-r--r-- | lasso/xml/disco_credentials.c | 2 | ||||
| -rw-r--r-- | lasso/xml/disco_credentials.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lasso/xml/disco_credentials.c b/lasso/xml/disco_credentials.c index 6c1f734d..b5ca06fe 100644 --- a/lasso/xml/disco_credentials.c +++ b/lasso/xml/disco_credentials.c @@ -48,7 +48,7 @@ /*****************************************************************************/ static struct XmlSnippet schema_snippets[] = { - { "", SNIPPET_LIST_NODES, G_STRUCT_OFFSET(LassoDiscoCredentials, any) }, + { "", SNIPPET_LIST_XMLNODES, G_STRUCT_OFFSET(LassoDiscoCredentials, any) }, { NULL, 0, 0} }; diff --git a/lasso/xml/disco_credentials.h b/lasso/xml/disco_credentials.h index 8d1eedab..58443ae0 100644 --- a/lasso/xml/disco_credentials.h +++ b/lasso/xml/disco_credentials.h @@ -49,7 +49,7 @@ typedef struct _LassoDiscoCredentialsClass LassoDiscoCredentialsClass; struct _LassoDiscoCredentials { LassoNode parent; - GList *any; + GList *any; /* of xmlNode */ }; struct _LassoDiscoCredentialsClass { |
