diff options
author | Samuel Stauffer <samuel@descolada.com> | 2014-03-19 22:13:11 +0100 |
---|---|---|
committer | Samuel Stauffer <samuel@descolada.com> | 2014-03-19 22:13:11 +0100 |
commit | 67312503d2a9166d5547734d36dcd5ecc70174cf (patch) | |
tree | 8bc3f16196d4a19f4bf062471090f9af69697024 /filter.go | |
parent | Rename DialSSL to DialTLS and remove DialTLS infavor of exporting StartTLS (diff) | |
download | ldap-67312503d2a9166d5547734d36dcd5ecc70174cf.tar ldap-67312503d2a9166d5547734d36dcd5ecc70174cf.tar.gz ldap-67312503d2a9166d5547734d36dcd5ecc70174cf.tar.bz2 ldap-67312503d2a9166d5547734d36dcd5ecc70174cf.tar.lz ldap-67312503d2a9166d5547734d36dcd5ecc70174cf.tar.xz ldap-67312503d2a9166d5547734d36dcd5ecc70174cf.tar.zst ldap-67312503d2a9166d5547734d36dcd5ecc70174cf.zip |
Diffstat (limited to 'filter.go')
-rw-r--r-- | filter.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ func CompileFilter(filter string) (*ber.Packet, *Error) { return nil, err } if pos != len(filter) { - return nil, NewError(ErrorFilterCompile, errors.New("ldap: finished compiling filter with extra at end.\n"+fmt.Sprint(filter[pos:]))) + return nil, NewError(ErrorFilterCompile, errors.New("ldap: finished compiling filter with extra at end: "+fmt.Sprint(filter[pos:]))) } return packet, nil } |