From: Christopher A B. <ca...@tc...> - 2001-07-06 16:01:16
|
As Graham Barr once put it so eloquently: > Can you send a patch ? Done. %% Christopher A. Bongaarts %% ca...@tc... %% %% Internet Services %% http://umn.edu/~cab %% %% University of Minnesota %% +1 (612) 625-1809 %% ----snip---- --- perl-ldap-0.23/lib/Net/LDAP/LDIF.pm Tue Apr 10 11:18:36 2001 +++ site_perl/5.6.0/Net/LDAP/LDIF.pm Fri Jun 22 14:15:49 2001 @@ -325,9 +325,9 @@ next; } elsif ($type eq 'modrdn') { - print _write_attr('newrdn',$entry->get_value('newrdn'),$wrap); + print _write_attr('newrdn',$entry->get_value('newrdn', asref => 1),$wrap); print 'deleteoldrdn: ',$entry->get_value('deleteoldrdn'),"\n"; - my $ns = $entry->get_value('newsuperior'); + my $ns = $entry->get_value('newsuperior', asref => 1); print _write_attr('newsuperior',$ns,$wrap) if defined $ns; next; } |