summaryrefslogtreecommitdiffstats
path: root/bind.go
diff options
context:
space:
mode:
authorSamuel Stauffer <samuel@descolada.com>2014-03-19 22:05:10 +0100
committerSamuel Stauffer <samuel@descolada.com>2014-03-19 22:05:10 +0100
commit4e3f3713c8f6debc9a2844af538094968142a714 (patch)
tree0c479514925aabf0bf8776b7756d8a7204820aec /bind.go
parentStylistic fixes, update imports, and some format string fixes (diff)
downloadldap-4e3f3713c8f6debc9a2844af538094968142a714.tar
ldap-4e3f3713c8f6debc9a2844af538094968142a714.tar.gz
ldap-4e3f3713c8f6debc9a2844af538094968142a714.tar.bz2
ldap-4e3f3713c8f6debc9a2844af538094968142a714.tar.lz
ldap-4e3f3713c8f6debc9a2844af538094968142a714.tar.xz
ldap-4e3f3713c8f6debc9a2844af538094968142a714.tar.zst
ldap-4e3f3713c8f6debc9a2844af538094968142a714.zip
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 7ef6802..742d90b 100644
--- a/bind.go
+++ b/bind.go
@@ -30,13 +30,13 @@ func (l *Conn) Bind(username, password string) *Error {
return err
}
if channel == nil {
- return NewError(ErrorNetwork, errors.New("Could not send message"))
+ return NewError(ErrorNetwork, errors.New("ldap: could not send message"))
}
defer l.finishMessage(messageID)
packet = <-channel
if packet == nil {
- return NewError(ErrorNetwork, errors.New("Could not retrieve response"))
+ return NewError(ErrorNetwork, errors.New("ldap: could not retrieve response"))
}
if l.Debug {