Fix code indentation

pull/13/head
Markus Stoll 2021-06-13 14:05:04 +02:00
parent 0801c2993e
commit 44a7868ce0
1 changed files with 6 additions and 6 deletions

View File

@ -165,7 +165,7 @@ func (c Config) checkConfig() {
} else {
log.Printf("DialTLS:=%v:%d", c.LdapURL, c.LdapPort)
}
if (len(c.LdapBindDN) > 0 && len(c.LdapBindPassword) == 0) {
if len(c.LdapBindDN) > 0 && len(c.LdapBindPassword) == 0 {
log.Println("BIND_DN supplied, but BIND_PASSWORD is empty")
}
if len(c.LdapFilter) == 0 {
@ -236,7 +236,7 @@ func mainJob() {

log.Printf("%d organizations were found on the server: %s", len(organizationList), cfg.ApiKeys.BaseUrl)

for 1 < len(organizationList) {
for 0 < len(organizationList) {

for i := 0; i < len(organizationList); i++ {