mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 18:14:15 +01:00
331c9120e8
* Update go-ldap dependency * Request for public keys only if attribute is set
13 lines
188 B
Go
13 lines
188 B
Go
// +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
|
|
}
|