messageID is undefined when using unbind()

John Devitofranceschi <[email protected]> Thu, 15 Nov 2012 13:52:18 -0500
Newsgroups gmane.comp.lang.perl.modules.ldap
Message-ID <[email protected]>
When I bind like this:

$ldap = Net::LDAP->new( $dshost , onerror => 'warn' );
$ldap->bind( $dn, password => $password );

Unbinding like this:

$ldap->unbind();

Makes my script generate this:

messageID is undefined at /usr/lib/cpan/Net/LDAP/Message.pm line 195.

This happens with perl-ldap 0.49.

It did not happen with 0.44.

Is this a known behavior?

jd