diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2005-09-05 15:11:13 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2005-09-05 15:11:13 +0000 |
| commit | fb67831a8b2576e06ec6306a13420b4411a6a8bf (patch) | |
| tree | 3798cb223f38f35c129511285e6c4a35fdb5603c | |
| parent | 7aa9f685bbd9f8a03df137b0888048ee4d8e1bcb (diff) | |
Missing attributes in the last commit.
| -rw-r--r-- | lasso/id-wsf/discovery.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lasso/id-wsf/discovery.c b/lasso/id-wsf/discovery.c index b1550bee..72d191d0 100644 --- a/lasso/id-wsf/discovery.c +++ b/lasso/id-wsf/discovery.c @@ -799,9 +799,13 @@ lasso_discovery_get_services(LassoDiscovery *discovery) if (strcmp(offering->ServiceInstance->ServiceType, LASSO_PP_HREF) == 0) { service = LASSO_DATA_SERVICE(lasso_personal_profile_service_new( LASSO_WSF_PROFILE(discovery)->server, offering)); + service->provider_id = g_strdup(offering->ServiceInstance->ProviderID); + service->abstract_description = g_strdup(offering->Abstract); } else { service = lasso_data_service_new_full(LASSO_WSF_PROFILE(discovery)->server, offering); + service->provider_id = g_strdup(offering->ServiceInstance->ProviderID); + service->abstract_description = g_strdup(offering->Abstract); } services = g_list_append(services, service); } |
