From 44a7868ce07c82b2797972d9b82917cea0ad838f Mon Sep 17 00:00:00 2001 From: Markus Stoll Date: Sun, 13 Jun 2021 14:05:04 +0200 Subject: [PATCH] Fix code indentation --- gitea-group-sync.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gitea-group-sync.go b/gitea-group-sync.go index 2e5f1e1..f8698db 100644 --- a/gitea-group-sync.go +++ b/gitea-group-sync.go @@ -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 { @@ -219,12 +219,12 @@ func mainJob() { } defer l.Close() - if len(cfg.LdapBindDN) == 0 { - err = l.UnauthenticatedBind("") + if len(cfg.LdapBindDN) == 0 { + err = l.UnauthenticatedBind("") } else { - err = l.Bind(cfg.LdapBindDN, cfg.LdapBindPassword) + err = l.Bind(cfg.LdapBindDN, cfg.LdapBindPassword) } - + if err != nil { log.Fatal(err) } @@ -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++ {