Browse Source

Fix code indentation

pull/13/head
Markus Stoll 4 years ago
parent
commit
44a7868ce0
  1. 10
      gitea-group-sync.go

10
gitea-group-sync.go

@ -165,7 +165,7 @@ func (c Config) checkConfig() { @@ -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,10 +219,10 @@ func mainJob() { @@ -219,10 +219,10 @@ 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 {
@ -236,7 +236,7 @@ func mainJob() { @@ -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++ {


Loading…
Cancel
Save