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:
parent
44c8bdad51
commit
94c7a2637e
|
@ -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.
|
||||
|
|
|
@ -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'}})) {
|
||||
|
|
Loading…
Reference in New Issue