Merge pull request #315 from fnordahl/issue/314-entryDN-does-not-exist

Get DN from entry, not entryDN attribute
This commit is contained in:
Eric Chiang 2016-02-16 09:44:32 -08:00
commit dc9e596542

View file

@ -288,7 +288,6 @@ func (m *LDAPIdentityProvider) Identity(username, password string) (*oidc.Identi
filter := m.ParseString(m.searchFilter, username)
attributes := []string{
"entryDN",
m.nameAttribute,
m.emailAttribute,
}
@ -304,7 +303,7 @@ func (m *LDAPIdentityProvider) Identity(username, password string) (*oidc.Identi
return nil, err
}
bindDN = sr.Entries[0].GetAttributeValue("entryDN")
bindDN = sr.Entries[0].DN
ldapName = sr.Entries[0].GetAttributeValue(m.nameAttribute)
ldapEmail = sr.Entries[0].GetAttributeValue(m.emailAttribute)