From ad05691e2da3ba352c3a52f8373e4f04175c1021 Mon Sep 17 00:00:00 2001 From: Hirofumi Kosaka Date: Mon, 10 Apr 2017 18:26:29 +0900 Subject: [PATCH 1/2] "remote_config" did not work at Pandora Agent for Windows. #116 --- pandora_agents/win32/pandora_windows_service.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_agents/win32/pandora_windows_service.cc b/pandora_agents/win32/pandora_windows_service.cc index 3e9184102c..33ac030544 100644 --- a/pandora_agents/win32/pandora_windows_service.cc +++ b/pandora_agents/win32/pandora_windows_service.cc @@ -1519,7 +1519,7 @@ Pandora_Windows_Service::checkConfig (string file) { } /* Get agent name */ - tmp = conf->getValue ("agent_name"); + agent_name = conf->getValue ("agent_name"); /* Error getting agent name */ From ddf691965415b00979358fd138f0634f957f029d Mon Sep 17 00:00:00 2001 From: Hirofumi Kosaka Date: Mon, 10 Apr 2017 18:27:34 +0900 Subject: [PATCH 2/2] "agent_alias" could not work at Pandora Agent for Windows. #116 --- pandora_agents/win32/pandora_windows_service.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_agents/win32/pandora_windows_service.cc b/pandora_agents/win32/pandora_windows_service.cc index 33ac030544..45c2189385 100644 --- a/pandora_agents/win32/pandora_windows_service.cc +++ b/pandora_agents/win32/pandora_windows_service.cc @@ -300,7 +300,7 @@ Pandora_Windows_Service::pandora_init () { } // Get the agent alias. - conf->getValue ("agent_alias"); + agent_alias = conf->getValue ("agent_alias"); if (agent_alias == "") { agent_alias = Pandora_Windows_Info::getSystemName (); this->conf->setValue("agent_alias", agent_alias); @@ -441,7 +441,7 @@ Pandora_Windows_Service::getXmlHeader () { agent_name = conf->getValue ("agent_name"); // Get agent alias - conf->getValue ("agent_alias"); + agent_alias = conf->getValue ("agent_alias"); // Get parent agent name parent_agent_name = conf->getValue ("parent_agent_name");