Graham Barr wrote: > Sorry it moved. I need to update the web site. > > http://svn.goingon.net/repos/perl-ldap/trunk/
Uhh... HEAD won't run. The reason being a typo in line 31 of lib/Net/LDAP/Entry.pm: 22 sub new { 23 my $self = shift; 24 my $type = ref($self) || $self; 25 26 my $entry = bless { 'changetype' => 'add', changes => [] }, $type; 27 28 @_ and $entry->dn( shift ); 29 @_ and $entry->add( @_ ); 30 31 retrun $entry; 32 } Has this code been tested? Peter