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
Dimitar Stoychev
OpenLDAP
Commits
2fe1eb92
Commit
2fe1eb92
authored
21 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
cleanup
parent
6a425692
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/filter.c
+5
-3
5 additions, 3 deletions
servers/slapd/filter.c
with
5 additions
and
3 deletions
servers/slapd/filter.c
+
5
−
3
View file @
2fe1eb92
...
...
@@ -691,16 +691,18 @@ filter2bv_x( Operation *op, Filter *f, struct berval *fstr )
{
int
i
;
Filter
*
p
;
struct
berval
tmp
,
struct
berval
tmp
;
static
struct
berval
ber_bvfalse
=
BER_BVC
(
"(?=false)"
),
ber_bvtrue
=
BER_BVC
(
"(?=true)"
),
ber_bvundefined
=
BER_BVC
(
"(?=undefined)"
),
ber_bverror
=
BER_BVC
(
"(?=error)"
),
ber_bvunknown
=
BER_BVC
(
"(?=unknown)"
);
ber_bvunknown
=
BER_BVC
(
"(?=unknown)"
),
ber_bvnone
=
BER_BVC
(
"(?=none)"
);
ber_len_t
len
;
if
(
f
==
NULL
)
{
ber_
str2
bv_x
(
"No filter!"
,
sizeof
(
"No filter!"
)
-
1
,
1
,
fstr
,
op
->
o_tmpmemctx
);
ber_
dup
bv_x
(
fstr
,
&
ber_bvnone
,
op
->
o_tmpmemctx
);
return
;
}
...
...
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