diff options
author | deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> | 2022-03-06 16:37:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-06 16:37:41 +0800 |
commit | 09dbbf9a6989c8045e0297c5d62c9e0c2732c1d9 (patch) | |
tree | 89e87d402ad163d5eaf93cf10824d0cc471654d9 /internal/auth/ldap | |
parent | b7372b1f32cd0bb40984debfb049e3fc04efaee4 (diff) |
autofix: fix unused method receiver (#6808)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to 'internal/auth/ldap')
-rw-r--r-- | internal/auth/ldap/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/auth/ldap/config.go b/internal/auth/ldap/config.go index 79840ee4..4ef6f157 100644 --- a/internal/auth/ldap/config.go +++ b/internal/auth/ldap/config.go @@ -86,7 +86,7 @@ func (c *Config) sanitizedUserDN(username string) (string, bool) { return strings.ReplaceAll(c.UserDN, "%s", username), true } -func (c *Config) sanitizedGroupFilter(group string) (string, bool) { +func (*Config) sanitizedGroupFilter(group string) (string, bool) { // See http://tools.ietf.org/search/rfc4515 badCharacters := "\x00*\\" if strings.ContainsAny(group, badCharacters) { @@ -97,7 +97,7 @@ func (c *Config) sanitizedGroupFilter(group string) (string, bool) { return group, true } -func (c *Config) sanitizedGroupDN(groupDn string) (string, bool) { +func (*Config) sanitizedGroupDN(groupDn string) (string, bool) { // See http://tools.ietf.org/search/rfc4514: "special characters" badCharacters := "\x00()*\\'\"#+;<>" if strings.ContainsAny(groupDn, badCharacters) || strings.HasPrefix(groupDn, " ") || strings.HasSuffix(groupDn, " ") { |