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
861b13e9
Commit
861b13e9
authored
Feb 08, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5263
parent
167bf3b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
861b13e9
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.8 Engineering
Fixed ldapmodify verbose logging (ITS#5247)
Fixed libldap ldap_parse_sasl_bind_result (ITS#5263)
Fixed slapd include handling (ITS#5276)
Fixed slapd non-atomic signal variables (ITS#5248)
Fixed slapd-ldif delete (ITS#5265)
...
...
libraries/libldap/sasl.c
View file @
861b13e9
...
...
@@ -201,7 +201,7 @@ ldap_sasl_bind_s(
rc
=
ldap_parse_sasl_bind_result
(
ld
,
result
,
&
scredp
,
0
);
}
if
(
rc
!=
LDAP_SUCCESS
&&
rc
!=
LDAP_SASL_BIND_IN_PROGRESS
)
{
if
(
rc
!=
LDAP_SUCCESS
)
{
ldap_msgfree
(
result
);
return
(
rc
);
}
...
...
@@ -347,7 +347,7 @@ ldap_parse_sasl_bind_result(
ldap_msgfree
(
res
);
}
return
(
ld
->
ld_errno
);
return
(
LDAP_SUCCESS
);
}
int
...
...
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