Something that actually works

This commit is contained in:
Alex 2020-02-01 15:09:09 +01:00
부모 da2c37bb95
커밋 e8ce6e33e5
3개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -12,7 +12,7 @@ job "directory" {
task "server" {
driver = "docker"
config {
image = "lxpz/bottin_amd64:3"
image = "lxpz/bottin_amd64:4"
readonly_rootfs = true
port_map {
ldap_port = 389

파일 보기

@ -86,7 +86,8 @@ func readTagAndLength(conn *bufio.Reader, bytes *[]byte) (ret ldap.TagAndLength,
// }
// We are expecting the LDAP sequence tag 0x30 as first byte
if b != 0x30 {
return nil, fmt.Errorf("Expecting 0x30 as first byte, but got %#x instead", b)
err = fmt.Errorf("Expecting 0x30 as first byte, but got %#x instead", b)
return
}
b, err = readBytes(conn, bytes, 1)

파일 보기

@ -337,7 +337,7 @@ func (server *Server) handleModifyInternal(state *State, r *message.ModifyReques
continue
}
if itemDN != dn {
logger.Fatal("itemDN != dn in handleModifyInternal")
server.logger.Fatal("itemDN != dn in handleModifyInternal")
}
vals, err := parseValue(item.Value)
if err != nil {