-
Notifications
You must be signed in to change notification settings - Fork 365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get(Raw)AttributeValues should compare attributes case insensitive #109
Comments
vetinari
added a commit
to vetinari/ldap
that referenced
this issue
May 4, 2017
This is the same way an LDAP server compares during a search request. Fixes go-ldap#109
3 tasks
Related to #129 also. |
vetinari
added a commit
to vetinari/ldap
that referenced
this issue
Jun 7, 2018
these are the case insensitive counter parts, e.g. GetAttributeValue <=> GetEqualFoldAttributeValue using strings.EqualFold to compare the attrribute names fixes go-ldap#109 go-ldap#129
johnweldon
added a commit
that referenced
this issue
Jun 11, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently it matches exactly, but with user input in mixed cases, the attributes are not found, e.g. when called with "objectclass" while "objectClass" is present, an empty list is returned.
The text was updated successfully, but these errors were encountered: