You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nil means "everything", and is the same as not passing the :attributes argument. If you want to indicate no attributes, you could/should specify '("1.1"), which is reserved for this use (I think).
It might be a good idea to change this in trivial-ldap; for example, by making 't mean all attributes, and 'nil mean none, or possibly let 'nil mean everything (as it does now) and map :none to the list '("1.1").
I was using `ldap:search' to figure whether some user exists in a given directory using this code:
Somewhat unexpectedly, this seems to retrieve all attributes, because I'm getting this error:
My workaround is to pass some dummy attribute name to the attributes argument, but it seems like
nil
should work there. Am I doing something wrong?The text was updated successfully, but these errors were encountered: