diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2006-11-07 10:03:43 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2006-11-07 10:03:43 +0000 |
| commit | 76e8b0976055debef1ff9710009e877c2f0f96ab (patch) | |
| tree | 5402e114cc0cda620c91c90862f8dcf21b6dba64 | |
| parent | 5c9de8fdcb8ae295ccb0ea68b4468b3c500e356a (diff) | |
fixed dump/restore from dump for name id management profile
| -rw-r--r-- | lasso/saml-2.0/name_id_management.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lasso/saml-2.0/name_id_management.c b/lasso/saml-2.0/name_id_management.c index 86b314eb..41b52570 100644 --- a/lasso/saml-2.0/name_id_management.c +++ b/lasso/saml-2.0/name_id_management.c @@ -608,10 +608,12 @@ lasso_name_id_management_get_type() if (!this_type) { static const GTypeInfo this_info = { sizeof (LassoNameIdManagementClass), - NULL, NULL, NULL, NULL, NULL, + NULL, NULL, + (GClassInitFunc) class_init, + NULL, NULL, sizeof(LassoNameIdManagement), 0, - NULL, + (GInstanceInitFunc) instance_init, }; this_type = g_type_register_static(LASSO_TYPE_PROFILE, |
