Browse Source

Fix code indentation

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

4
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 {
@ -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