in reply to Re: Hash of Hashes, referencing, dereferencing and Net::SNMP
in thread Hash of Hashes, referencing, dereferencing and Net::SNMP
You will have to break the statement down into two parts
Another approach would be using a hash slice:
my $site = results_table->{$$group}->{$$site_name}; # for convenience @{ $site }{("sysobjid", "snmp_status")} = ("unknown", "NOT OK");
|
|---|