From: Graham B. <gb...@us...> - 2004-01-01 09:32:39
|
Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP In directory sc8-pr-cvs1:/tmp/cvs-serv911/lib/Net/LDAP Modified Files: Bind.pm Log Message: Add $VERSION to Net::LDAP::Bind Index: Bind.pm =================================================================== RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Bind.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Bind.pm 17 Oct 2003 21:22:56 -0000 1.5 +++ Bind.pm 1 Jan 2004 09:32:35 -0000 1.6 @@ -7,8 +7,9 @@ use strict; use Net::LDAP qw(LDAP_SASL_BIND_IN_PROGRESS LDAP_DECODING_ERROR LDAP_SUCCESS); use Net::LDAP::Message; -use vars qw(@ISA); +use vars qw(@ISA $VERSION); +$VERSION = "1.02"; @ISA = qw(Net::LDAP::Message); sub _sasl_info { |