From: Christopher A B. <ca...@tc...> - 2001-07-06 14:31:17
|
As Graham Barr once put it so eloquently: > Does anyone know of any outstanding problems with 0.23 that have > not been fixed in CVS ? There's a bug in handling modrdn requests of Net::LDAP::LDIF. Around line 327 in version 0.23, there are a few calls to _write_attr using the results from calling Entry's get_value method. _write_attr needs a reference, but get_value by default returns a value. Two possible fixes: add asref => 1 to the options passed to the get_value method, or fix _write_attr to not dereference its parameter if it is not a reference. (I fixed it myself the first way and could probably provide the patch in a few days, but I suspect the latter fix would be more robust.) %% Christopher A. Bongaarts %% ca...@tc... %% %% Internet Services %% http://umn.edu/~cab %% %% University of Minnesota %% +1 (612) 625-1809 %% |