diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-07-16 19:34:32 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2010-07-16 19:34:32 +0000 |
| commit | 6b48a72943507a7df1a69a054e767d62fd671540 (patch) | |
| tree | b28d7dd03e1dcca510863f1f0c9e1c1365ffdd1d | |
| parent | e869899b7966dedb28001d62116b572adfae2904 (diff) | |
| download | lasso-6b48a72943507a7df1a69a054e767d62fd671540.tar.gz lasso-6b48a72943507a7df1a69a054e767d62fd671540.tar.xz lasso-6b48a72943507a7df1a69a054e767d62fd671540.zip | |
[ID-FFv1.2] add missing namespace declarations
| -rw-r--r-- | lasso/xml/lib_logout_response.c | 1 | ||||
| -rw-r--r-- | lasso/xml/lib_register_name_identifier_response.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lasso/xml/lib_logout_response.c b/lasso/xml/lib_logout_response.c index 2e56947a..13e13940 100644 --- a/lasso/xml/lib_logout_response.c +++ b/lasso/xml/lib_logout_response.c @@ -51,6 +51,7 @@ class_init(LassoLibLogoutResponseClass *klass) nclass->node_data = g_new0(LassoNodeClassData, 1); lasso_node_class_set_nodename(nclass, "LogoutResponse"); + lasso_node_class_set_ns(nclass, LASSO_LIB_HREF, LASSO_LIB_PREFIX); } GType diff --git a/lasso/xml/lib_register_name_identifier_response.c b/lasso/xml/lib_register_name_identifier_response.c index e87dce92..ee86c146 100644 --- a/lasso/xml/lib_register_name_identifier_response.c +++ b/lasso/xml/lib_register_name_identifier_response.c @@ -52,6 +52,7 @@ class_init(LassoLibRegisterNameIdentifierResponseClass *klass) nclass->node_data = g_new0(LassoNodeClassData, 1); lasso_node_class_set_nodename(nclass, "RegisterNameIdentifierResponse"); + lasso_node_class_set_ns(nclass, LASSO_LIB_HREF, LASSO_LIB_PREFIX); } GType |
