Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDouwe Maan <me@douwe.me>2015-03-23 10:23:19 +0300
committerDouwe Maan <me@douwe.me>2015-03-23 10:23:19 +0300
commitd4d0852d2d9cfa43b77bb795fff2a3a022be7024 (patch)
treea2a470fdd04db5b8ff9e5d46f6793af54f007ccf /lib
parentbc4e25189805879490555ef2782193470f4fe295 (diff)
parent1502fed795979b19ca5366b688f07ffc22c79c99 (diff)
Merge pull request #8995 from MichaelAlt/patch-1
Faulty LDAP DN name escaping removed
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/ldap/person.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/gitlab/ldap/person.rb b/lib/gitlab/ldap/person.rb
index 3c426179375..b81f3e8e8f5 100644
--- a/lib/gitlab/ldap/person.rb
+++ b/lib/gitlab/ldap/person.rb
@@ -14,7 +14,6 @@ module Gitlab
end
def self.find_by_dn(dn, adapter)
- dn = Net::LDAP::Filter.escape(dn)
adapter.user('dn', dn)
end