Fixed erroneous assignment of ldapUserIdentityAttribute instead of ldapUserFullName
parent
05a780be00
commit
54360cca8d
|
@ -160,7 +160,7 @@ func mainJob() {
|
||||||
ldapUserFullName = "sn" //change to cn if you need it
|
ldapUserFullName = "sn" //change to cn if you need it
|
||||||
log.Println("By default LDAP_USER_FULL_NAME = 'sn'")
|
log.Println("By default LDAP_USER_FULL_NAME = 'sn'")
|
||||||
} else {
|
} else {
|
||||||
ldapUserIdentityAttribute = os.Getenv("LDAP_USER_FULL_NAME")
|
ldapUserFullName = os.Getenv("LDAP_USER_FULL_NAME")
|
||||||
}
|
}
|
||||||
|
|
||||||
var l *ldap.Conn
|
var l *ldap.Conn
|
||||||
|
|
Loading…
Reference in New Issue