aboutsummaryrefslogtreecommitdiff
path: root/bind.go
diff options
context:
space:
mode:
authorSamuel Stauffer <[email protected]>2014-03-19 13:57:32 -0700
committerSamuel Stauffer <[email protected]>2014-03-19 13:57:59 -0700
commit222854694e922344f18910ce3704115d08ca30cb (patch)
tree62d54db042f04993a4f89b780f0afb02b9a67e18 /bind.go
parent3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e (diff)
Stylistic fixes, update imports, and some format string fixes
Diffstat (limited to 'bind.go')
-rw-r--r--bind.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bind.go b/bind.go
index a268e20..7ef6802 100644
--- a/bind.go
+++ b/bind.go
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// File contains Bind functionality
package ldap
import (
"errors"
- "github.com/marcsauter/asn1-ber"
+
+ "github.com/SpruceHealth/asn1-ber"
)
func (l *Conn) Bind(username, password string) *Error {