Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Christopher Ng
OpenLDAP
Commits
88d9df29
Commit
88d9df29
authored
16 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
ITS#5581
parent
dd719e81
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+1
-0
1 addition, 0 deletions
CHANGES
servers/slapd/overlays/unique.c
+3
-3
3 additions, 3 deletions
servers/slapd/overlays/unique.c
with
4 additions
and
3 deletions
CHANGES
+
1
−
0
View file @
88d9df29
...
...
@@ -17,6 +17,7 @@ OpenLDAP 2.4.11 Engineering
Fixed slapo-ppolicy DNs with whitespaces (ITS#5552)
Fixed slapo-syncprov ACL evaluation (ITS#5548)
Fixed slapo-syncprov full reload (ITS#5564)
Fixed slapo-unique filter normalization (ITS#5581)
Fixed contrib smbk5pwd terminator (ITS#5575)
Build Environment
Fixed test048 to skip if threads is not available (ITS#5529)
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/overlays/unique.c
+
3
−
3
View file @
88d9df29
...
...
@@ -238,15 +238,15 @@ unique_new_domain_uri ( unique_domain_uri **urip,
}
if
(
url_desc
->
lud_filter
)
{
Filter
*
f
;
ber_str2bv
(
url_desc
->
lud_filter
,
0
,
1
,
&
uri
->
filter
);
f
=
str2filter
(
uri
->
filter
.
bv_val
);
Filter
*
f
=
str2filter
(
url_desc
->
lud_filter
);
if
(
!
f
)
{
snprintf
(
c
->
cr_msg
,
sizeof
(
c
->
cr_msg
),
"unique: bad filter"
);
rc
=
ARG_BAD_CONF
;
goto
exit
;
}
/* make sure the strfilter is in normal form (ITS#5581) */
filter2bv
(
f
,
&
uri
->
filter
);
filter_free
(
f
);
}
exit:
...
...
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