1
0
Fork 0
forked from forgejo/forgejo

revert simple LDAP userDN and update example

This commit is contained in:
Unknwon 2015-09-16 12:15:14 -04:00
parent e303d74ab6
commit 6a1907d994
5 changed files with 6 additions and 6 deletions

View file

@ -84,8 +84,8 @@ func (ls *Source) FindUserDN(name string) (string, bool) {
func (ls *Source) SearchEntry(name, passwd string, directBind bool) (string, string, string, bool, bool) {
var userDN string
if directBind {
log.Trace("LDAP will bind directly via UserDN: %s", ls.UserDN)
userDN = ls.UserDN
log.Trace("LDAP will bind directly via UserDN template: %s", ls.UserDN)
userDN = fmt.Sprintf(ls.UserDN, name)
} else {
log.Trace("LDAP will use BindDN.")