Subject: | warnings in Net/LDAP/Message.pm |
I can't check cpan testers at the moment, but on my machines (5.8.8 and
5.14.1), the Net::LDAP unit tests all fail because of some valid
warnings in Net/LDAP/Message.pm
sub code { $self->{resultcode} || LDAP_SUCCESS }
sub error { $self->{errorMessage} || "" }
should probably be:
sub code { shift->{resultcode} || LDAP_SUCCESS }
sub error { shift->{errorMessage} || "" }