From 0b725ba2fc7cdb85397ee9d25c6807e76909848e Mon Sep 17 00:00:00 2001 From: m-lopez-f Date: Wed, 30 Mar 2016 11:18:30 +0200 Subject: [PATCH] Fixed warning in pandora_manage(CLI). Tiquet: #3496 (cherry picked from commit ccf7da77a9e0cf503c2558e09562f7a7478d374d) --- pandora_server/util/pandora_manage.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 1cefae5fbf..7905f35823 100644 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -3881,7 +3881,7 @@ sub cli_locate_agent () { } } - if (defined(@list_servers)) { + if (scalar(@list_servers) > 0) { $list_names_servers = join(',',@list_servers); print_log "[INFO] The agent: $agent_name find in server with IDS: $list_names_servers\n\n"; }