From 08a3b7128e27f474046afa3f78b55df221c59dd9 Mon Sep 17 00:00:00 2001 From: Jan Synacek Date: Mon, 5 May 2014 15:28:58 +0200 Subject: libopenlmi: minor fixes and improvements --- src/service-dbus/LMI_ServiceProvider.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/service-dbus') diff --git a/src/service-dbus/LMI_ServiceProvider.c b/src/service-dbus/LMI_ServiceProvider.c index 1f370c1..c3d5938 100644 --- a/src/service-dbus/LMI_ServiceProvider.c +++ b/src/service-dbus/LMI_ServiceProvider.c @@ -58,8 +58,8 @@ static CMPIStatus LMI_ServiceEnumInstanceNames( LMI_ServiceRef w; LMI_ServiceRef_Init(&w, _cb, ns); LMI_ServiceRef_Set_CreationClassName(&w, LMI_Service_ClassName); - LMI_ServiceRef_Set_SystemCreationClassName(&w, get_system_creation_class_name()); - LMI_ServiceRef_Set_SystemName(&w, get_system_name()); + LMI_ServiceRef_Set_SystemCreationClassName(&w, lmi_get_system_creation_class_name()); + LMI_ServiceRef_Set_SystemName(&w, lmi_get_system_name()); LMI_ServiceRef_Set_Name(&w, slist->name[i]); CMReturnObjectPath(cr, LMI_ServiceRef_ToObjectPath(&w, NULL)); @@ -85,8 +85,8 @@ static CMPIStatus LMI_ServiceEnumInstances( LMI_Service w; LMI_Service_InitFromObjectPath(&w, _cb, cop); LMI_Service_Set_CreationClassName(&w, LMI_Service_ClassName); - LMI_Service_Set_SystemCreationClassName(&w, get_system_creation_class_name()); - LMI_Service_Set_SystemName(&w, get_system_name()); + LMI_Service_Set_SystemCreationClassName(&w, lmi_get_system_creation_class_name()); + LMI_Service_Set_SystemName(&w, lmi_get_system_name()); LMI_Service_Set_Name(&w, svcs->svc[i]->svName); LMI_Service_Set_Status(&w, svcs->svc[i]->svStatus); LMI_Service_Set_Started(&w, svcs->svc[i]->svStarted); -- cgit