(RADIATOR) Major Bug in radiator patches
Achint Saxena
ASaxena at Walkerwireless.com
Wed Jul 24 01:22:00 CDT 2002
Just a quick note, in case no one has discovered this yet. In Rdict.pm,
$vendor is redefined as a local variable, which causes incorrect vendor
attribute and value mapping.
--------> error
sub valNumToName
{
my ($self, $attrnum, $valnum, $vendor) = @_;
my $vendor += 0;
.....
.....
}
<-------- fix
sub valNumToName
{
my ($self, $attrnum, $valnum, $vendor) = @_;
$vendor += 0;
.....
.....
}
Cheers.
Achint.
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on radiator-announce at open.com.au
To unsubscribe, email 'majordomo at open.com.au' with
'unsubscribe radiator' in the body of the message.
More information about the radiator
mailing list