Request for public keys only if LDAP attribute is set (#5816) (#5819)

* Update go-ldap dependency

* Request for public keys only if attribute is set
This commit is contained in:
Lauris BH
2019-01-24 12:21:36 +02:00
committed by GitHub
parent f635041c98
commit 2c26521579
13 changed files with 295 additions and 107 deletions

13
vendor/gopkg.in/ldap.v2/atomic_value.go generated vendored Normal file
View File

@@ -0,0 +1,13 @@
// +build go1.4
package ldap
import (
"sync/atomic"
)
// For compilers that support it, we just use the underlying sync/atomic.Value
// type.
type atomicValue struct {
atomic.Value
}