summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2010-01-28 15:31:36 +0000
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2010-01-28 15:31:36 +0000
commit016ee53393426a3e9fceacf3c023643ca39ca425 (patch)
treee15d623744f033d841269fda47f869ac1fc38d2b
parent03400fd8f04939d057c959f7628cd84c1f575879 (diff)
downloadlasso-016ee53393426a3e9fceacf3c023643ca39ca425.tar.gz
lasso-016ee53393426a3e9fceacf3c023643ca39ca425.tar.xz
lasso-016ee53393426a3e9fceacf3c023643ca39ca425.zip
XML: add missing element-type annotations
-rw-r--r--lasso/xml/dst_data.h2
-rw-r--r--lasso/xml/sa_sasl_request.h2
-rw-r--r--lasso/xml/soap-1.1/soap_fault.h2
-rw-r--r--lasso/xml/soap_binding_ext_credential.h2
-rw-r--r--lasso/xml/soap_binding_usage_directive.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/lasso/xml/dst_data.h b/lasso/xml/dst_data.h
index aa17c704..160aafbe 100644
--- a/lasso/xml/dst_data.h
+++ b/lasso/xml/dst_data.h
@@ -46,7 +46,7 @@ typedef struct _LassoDstDataClass LassoDstDataClass;
struct _LassoDstData {
LassoNode parent;
- GList *any; /* list of xmlNode* */
+ GList *any; /* of xmlNode* */
char *id;
char *itemIDRef;
diff --git a/lasso/xml/sa_sasl_request.h b/lasso/xml/sa_sasl_request.h
index 3a3acedb..fc1c0de6 100644
--- a/lasso/xml/sa_sasl_request.h
+++ b/lasso/xml/sa_sasl_request.h
@@ -50,7 +50,7 @@ typedef struct _LassoSaSASLRequestClass LassoSaSASLRequestClass;
struct _LassoSaSASLRequest {
LassoNode parent;
- GList *Data; /* of strings */
+ GList *Data; /* of string */
LassoLibRequestAuthnContext *RequestAuthnContext;
char *mechanism;
diff --git a/lasso/xml/soap-1.1/soap_fault.h b/lasso/xml/soap-1.1/soap_fault.h
index 8d37f545..12b6ed67 100644
--- a/lasso/xml/soap-1.1/soap_fault.h
+++ b/lasso/xml/soap-1.1/soap_fault.h
@@ -51,7 +51,7 @@ struct _LassoSoapFault {
gchar *faultcode;
gchar *faultstring;
- GList *faultactor;
+ GList *faultactor; /* of string */
LassoSoapDetail *Detail;
};
diff --git a/lasso/xml/soap_binding_ext_credential.h b/lasso/xml/soap_binding_ext_credential.h
index 61fbbcf9..896a0861 100644
--- a/lasso/xml/soap_binding_ext_credential.h
+++ b/lasso/xml/soap_binding_ext_credential.h
@@ -57,7 +57,7 @@ typedef struct _LassoSoapBindingExtCredentialClass \
struct _LassoSoapBindingExtCredential {
LassoNode parent;
- GList *any;
+ GList *any; /* of LassoNode */
gchar *notOnOrAfter;
};
diff --git a/lasso/xml/soap_binding_usage_directive.h b/lasso/xml/soap_binding_usage_directive.h
index 92d4ae94..038a47ff 100644
--- a/lasso/xml/soap_binding_usage_directive.h
+++ b/lasso/xml/soap_binding_usage_directive.h
@@ -50,7 +50,7 @@ typedef struct _LassoSoapBindingUsageDirectiveClass LassoSoapBindingUsageDirecti
struct _LassoSoapBindingUsageDirective {
LassoNode parent;
- GList *other;
+ GList *other; /* of LassoNode */
gchar *id;
gchar *ref;