compat: Fix attribute name for hosts.

This commit is contained in:
Gunnar Beutner 2013-08-29 19:48:54 +02:00
parent c9ec28440e
commit 8729a809b3
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ void CompatComponent::DumpHostObject(std::ostream& fp, const Host::Ptr& host)
{
fp << "define host {" << "\n"
<< "\t" << "host_name" << "\t" << host->GetName() << "\n"
<< "\t" << "display_name" << "\t" << host->GetDisplayName() << "\n";
<< "\t" << "alias" << "\t" << host->GetDisplayName() << "\n";
std::set<Host::Ptr> parents = host->GetParentHosts();