At 02:13 AM 2002-03-02, John Hughes wrote: >Ok; that fixes the crash, but is it normal that: > > (givenName=) >and > (!(givenName=*)) > >return different results? Yes. (givenName=) is Undefined and hence should match no entries. (!(givenName=*)) should return all entries which don't contain a givenName attribute. Kurt