This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Deuxfleurs
/
bottin
Watch
5
Star
2
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Activity
Browse Source
Fix equality test in ldap compare request
master
Alex
11 months ago
parent
c3d30df155
commit
851573e28f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
read.go
+ 1
- 1
read.go
View File
@ -53,7 +53,7 @@ func (server *Server) handleCompareInternal(state *State, r *message.CompareRequ
}
for
_
,
v
:=
range
values
{
if
v
==
expected
{
if
valueMatch
(
attr
,
v
,
expected
)
{
return
ldap
.
LDAPResultCompareTrue
,
nil
}
}
Write
Preview
Loading…
Cancel
Save