Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shawn McKinney
OpenLDAP
Commits
959e9e67
Commit
959e9e67
authored
20 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
import fix to ITS#3474 from HEAD
parent
cf464672
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+2
-1
2 additions, 1 deletion
CHANGES
servers/slapd/back-bdb/referral.c
+1
-1
1 addition, 1 deletion
servers/slapd/back-bdb/referral.c
with
3 additions
and
2 deletions
CHANGES
+
2
−
1
View file @
959e9e67
...
...
@@ -5,11 +5,12 @@ OpenLDAP 2.2.21 Engineering
Fixed slapd/slurpd replog locking (ITS#3421)
Fixed slaptest failure if databases cannot be started (ITS#3461)
Fixed back-bdb entry e_ocflags reset on objectClass modify
Fixed back-bdb retcode on referral (ITS#3475)
Fixed back-bdb detecting deadlock in indexer (ITS#3481)
Build Environment
Misc fixes for dynamic modules (ITS#3401, #3428)
Documentation
slappasswd man page quotes (ITS#3468)
Fixed
slappasswd man page quotes (ITS#3468)
OpenLDAP 2.2.20 Release
Fixed slapd sanity check on protocol in authz-regexp URI (ITS#3411)
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/back-bdb/referral.c
+
1
−
1
View file @
959e9e67
...
...
@@ -116,7 +116,7 @@ dn2entry_retry:
if
(
rs
->
sr_ref
!=
NULL
)
{
/* send referrals */
rs
->
sr_err
=
LDAP_REFERRAL
;
rc
=
rs
->
sr_err
=
LDAP_REFERRAL
;
send_ldap_result
(
op
,
rs
);
ber_bvarray_free
(
rs
->
sr_ref
);
rs
->
sr_ref
=
NULL
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment