Subject: | Net::SMPP::PDU methods return runtime error: Not a GLOB reference |
Methods of Net::SMPP::PDU package incorrectly access object hash.
E.g. code like
${*$me}{status} result the following error:
Not a GLOB reference at /usr/lib/perl5/site_perl/5.8.8/Net/SMPP.pm
It should be written:
${$me}{status}
or
$me->{status}
Same issue with:
${$me}{message_id}
${$me}{seq}
${$me}{cmd}
Because of this error, methods explain_cmd() and explain_status()
don't work at all.
According the code the same issue was fixed in "sub status"
but other subs remain untouched.