summaryrefslogtreecommitdiffstats
path: root/modify.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 /modify.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 '')
-rw-r--r--modify.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/modify.go b/modify.go
index dad1179..8efbcfe 100644
--- a/modify.go
+++ b/modify.go
@@ -124,7 +124,7 @@ func (l *Conn) Modify(modifyRequest *ModifyRequest) *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)
@@ -132,7 +132,7 @@ func (l *Conn) Modify(modifyRequest *ModifyRequest) *Error {
packet = <-channel
l.Debug.Printf("%d: got response %p\n", messageID, packet)
if packet == nil {
- return NewError(ErrorNetwork, errors.New("Could not retrieve message"))
+ return NewError(ErrorNetwork, errors.New("ldap: could not retrieve message"))
}
if l.Debug {