forked from Deuxfleurs/bottin
Something that actually works
This commit is contained in:
parent
da2c37bb95
commit
e8ce6e33e5
3 changed files with 4 additions and 3 deletions
|
@ -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)
|
||||
|
|
2
write.go
2
write.go
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue