From 0dd024d669180e8ee3dc2e0d008a228c33d82d4c Mon Sep 17 00:00:00 2001
From: rithu john <rithujohn191@gmail.com>
Date: Thu, 4 May 2017 15:39:08 -0700
Subject: [PATCH] connector/ldap: correct a comment.

---
 connector/ldap/ldap.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/connector/ldap/ldap.go b/connector/ldap/ldap.go
index 8d112b72..127d5d9f 100644
--- a/connector/ldap/ldap.go
+++ b/connector/ldap/ldap.go
@@ -359,7 +359,7 @@ func (c *ldapConnector) userEntry(conn *ldap.Conn, username string) (user ldap.E
 }
 
 func (c *ldapConnector) Login(ctx context.Context, s connector.Scopes, username, password string) (ident connector.Identity, validPass bool, err error) {
-	// make this check to avoid anonymous bind to the LDAP server.
+	// make this check to avoid unauthenticated bind to the LDAP server.
 	if password == "" {
 		return connector.Identity{}, false, nil
 	}
-- 
GitLab