modules/ans1-ber: fix LDAP UTF8 string decoding for #916

This commit is contained in:
Unknwon 2015-02-08 14:39:54 -05:00
parent 9420eecb87
commit 3a44143b81
1 changed files with 4 additions and 4 deletions

View File

@ -256,11 +256,11 @@ func ReadPacket(reader io.Reader) (*Packet, error) {
}
func DecodeString(data []byte) (ret string) {
for _, c := range data {
ret += fmt.Sprintf("%c", c)
}
// for _, c := range data {
// ret += fmt.Sprintf("%c", c)
// }
return
return string(data)
}
func DecodeInteger(data []byte) (ret uint64) {