refactor: ldap search request
This commit is contained in:
parent
6d24b07573
commit
0254a4ec34
|
@ -87,8 +87,8 @@ func ldapReq(user, pass string) (*ldap.SearchResult, error) {
|
|||
searchRequest := ldap.NewSearchRequest(
|
||||
lc.BaseDn, // The base dn to search
|
||||
ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false,
|
||||
fmt.Sprintf(lc.AuthFilter, user), // The filter to apply
|
||||
genLdapAttributeSearchList(), // A list attributes to retrieve
|
||||
fmt.Sprintf(lc.AuthFilter, ldap.EscapeFilter(user)), // The filter to apply
|
||||
genLdapAttributeSearchList(), // A list attributes to retrieve
|
||||
nil,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue