Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
9aa70639
Commit
9aa70639
authored
Feb 12, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5368
parent
2c3aaca6
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
9aa70639
...
...
@@ -27,6 +27,7 @@ OpenLDAP 2.4.8 Engineering
Fixed slapd cn=config crash on delete (ITS#5343)
Fixed slapd cn=config global acls (ITS#5352)
Fixed slapd truncated cookie (ITS#5362)
Fixed slapd sasl with CLEARTEXT (ITS#5368)
Fixed slapd str2entry with no attrs (ITS#5308)
Fixed slapd TLSVerifyClient default (ITS#5360)
Fixed slapd-bdb crash with modrdn (ITS#5358)
...
...
servers/slapd/sasl.c
View file @
9aa70639
...
...
@@ -216,7 +216,8 @@ sasl_ap_lookup( Operation *op, SlapReply *rs )
* past the scheme name, skip this value.
*/
#ifdef SLAPD_CLEARTEXT
if
(
!
ber_bvstrcasecmp
(
bv
,
&
sc_cleartext
)
)
{
if
(
!
strncasecmp
(
bv
->
bv_val
,
sc_cleartext
.
bv_val
,
sc_cleartext
.
bv_len
))
{
struct
berval
cbv
;
cbv
.
bv_len
=
bv
->
bv_len
-
sc_cleartext
.
bv_len
;
if
(
cbv
.
bv_len
>
0
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment