From: Graham B. <gb...@po...> - 2000-05-24 09:13:50
|
On Tue, May 23, 2000 at 09:20:07PM -0500, Rusty Biggs wrote: > Hi Neil. > > I don't know if the others have already replied yet, so I may be out of line in > my response. > > One thing that I saw very quickly with your code is that you have: > > '(&(cn=neil*)(sn=b*)' > > instead of : > > '(&(cn=neil*)(sn=b*))' # second parenthesis at the end Yes, the ::Filter module was not catching this as an error. But it does now. > I would have thought you would have caught an error, but I'm not sure > how the various LDAP servers respond to this. ( One that I'm familier with > (Isocor) chokes :) Well the server got a valid filter. ::Filter was encoding it as if the missing paren was there. Graham. |