|
The following error occurs in "make test":
t/libtest...."my" variable $value masks earlier declaration in same statement at /root/.cpan/build/
+SNMP-Util-1.8/blib/lib/SNMP/Util.pm line 804.\
in the following code:
my(
$IP,
$value,
$oid,
$value,
$value_hi,
$value_lo,
@range,
@restore_oid_list,
@set_oid_list,
@value_array,
);
Sure enough, $value is in the list twice. Is it extraneous or did another variable get wiped out?
|