mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
modules/ans1-ber: fix LDAP UTF8 string decoding for #916
This commit is contained in:
parent
9420eecb87
commit
3a44143b81
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user