aboutsummaryrefslogtreecommitdiff
path: root/internal/auth/ldap/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/auth/ldap/config.go')
-rw-r--r--internal/auth/ldap/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/auth/ldap/config.go b/internal/auth/ldap/config.go
index 155d161a..db666cde 100644
--- a/internal/auth/ldap/config.go
+++ b/internal/auth/ldap/config.go
@@ -193,7 +193,7 @@ func bindUser(l *ldap.Conn, userDN, passwd string) error {
// searchEntry searches an LDAP source if an entry (name, passwd) is valid and in the specific filter.
func (c *Config) searchEntry(name, passwd string, directBind bool) (string, string, string, string, bool, bool) {
// See https://tools.ietf.org/search/rfc4513#section-5.1.2
- if len(passwd) == 0 {
+ if passwd == "" {
log.Trace("authentication failed for '%s' with empty password", name)
return "", "", "", "", false, false
}