2013-05-06 Ramon Novoa <rnovoa@artica.es>

* pandora_agent: Syntactic fix. Fixes bug #2173.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8102 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2013-05-06 10:34:01 +00:00
parent 44c8bdad51
commit 94c7a2637e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-05-06 Ramon Novoa <rnovoa@artica.es>
* pandora_agent: Syntactic fix. Fixes bug #2173.
2013-04-21 Junichi Satoh <junichi@rworks.jp>
* pandora_agent_installer: Added support for NetBSD.

View File

@ -524,7 +524,7 @@ sub parse_conf_modules($) {
for (my $i = 0; $i <= $#{$module->{$token}}; $i++) {
# Array of configuration tokens
foreach my $key (keys ($module->{$token}->[$i])) {
foreach my $key (keys (%{$module->{$token}->[$i]})) {
# Each configuration token is a hash
while (my ($macro, $subst) = each (%{$module->{'macros'}})) {