deps: revendor

Signed-off-by: Stephan Renatus <srenatus@chef.io>
This commit is contained in:
Stephan Renatus
2018-11-12 19:39:20 +01:00
parent 1723e13fed
commit 3295084236
18 changed files with 694 additions and 334 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
}