From 4fcda6699f60db1a0f205c5b8a06243d83f7cd0d Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sat, 9 Feb 2013 01:49:45 +0100 Subject: [PATCH] Bugfix: use short names in servicegroup objects. --- components/compat/compatcomponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/compat/compatcomponent.cpp b/components/compat/compatcomponent.cpp index 9a2028186..ef73c63d5 100644 --- a/components/compat/compatcomponent.cpp +++ b/components/compat/compatcomponent.cpp @@ -500,7 +500,7 @@ void CompatComponent::StatusTimerHandler(void) vector sglist; BOOST_FOREACH(const Service::Ptr& service, sg->GetMembers()) { sglist.push_back(service->GetHost()->GetName()); - sglist.push_back(service->GetName()); + sglist.push_back(service->GetShortName()); } DumpStringList(objectfp, sglist);