[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
(ITS#5802) nssov_uid2dn using wrong LDAP filter
Full_Name: Ralf Haferkamp
Version: HEAD, RE24
OS: Linux
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (89.166.136.132)
Submitted by: ralf
The uid2dn function to resolve a username into a DN uses filters of the form
"(&(objectclass=posixAccount)(uidNumber=<username>))" in it's query. The
correct filter would be:
"(&(objectclass=posixAccount)(uid=<username>))"
Fix will appear in CVS soon.