forked from Deuxfleurs/bottin
Fix bug with lowercasing
This fixes some ldap queries not working due to case differences.
This commit is contained in:
parent
dbd9003714
commit
ae44c29fc3
1 changed files with 3 additions and 1 deletions
4
util.go
4
util.go
|
@ -30,7 +30,9 @@ func dnToConsul(dn string) (string, error) {
|
||||||
rdns[i], rdns[j] = rdns[j], rdns[i]
|
rdns[i], rdns[j] = rdns[j], rdns[i]
|
||||||
}
|
}
|
||||||
|
|
||||||
return strings.Join(rdns, "/"), nil
|
concattedPath := strings.Join(rdns, "/")
|
||||||
|
|
||||||
|
return strings.ToLower(concattedPath), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func consulToDN(key string) (string, string, error) {
|
func consulToDN(key string) (string, string, error) {
|
||||||
|
|
Loading…
Reference in a new issue