Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
e22c4b64
Commit
e22c4b64
authored
Aug 01, 2018
by
Thorsten Glaser
Committed by
Quanah Gibson-Mount
Feb 06, 2020
Browse files
ITS#8890 fix benign typos
No functional impact
parent
33760eec
Changes
4
Hide whitespace changes
Inline
Side-by-side
clients/tools/common.c
View file @
e22c4b64
...
...
@@ -2327,7 +2327,7 @@ void tool_print_ctrls(
/* known controls */
for
(
j
=
0
;
tool_ctrl_response
[
j
].
oid
!=
NULL
;
j
++
)
{
if
(
strcmp
(
tool_ctrl_response
[
j
].
oid
,
ctrls
[
i
]
->
ldctl_oid
)
==
0
)
{
if
(
!
tool_ctrl_response
[
j
].
mask
&
tool_type
)
{
if
(
!
(
tool_ctrl_response
[
j
].
mask
&
tool_type
)
)
{
/* this control should not appear
* with this tool; warning? */
}
...
...
servers/slapd/backend.c
View file @
e22c4b64
...
...
@@ -1500,7 +1500,7 @@ fe_acl_group(
* or if filter parsing fails.
* In the latter case,
* we should give up. */
if
(
ludp
->
lud_filter
!=
NULL
&&
ludp
->
lud_filter
!=
'\0'
)
{
if
(
ludp
->
lud_filter
!=
NULL
&&
*
ludp
->
lud_filter
!=
'\0'
)
{
filter
=
str2filter_x
(
op
,
ludp
->
lud_filter
);
if
(
filter
==
NULL
)
{
/* give up... */
...
...
servers/slapd/overlays/constraint.c
View file @
e22c4b64
...
...
@@ -446,7 +446,7 @@ constraint_cf_gen( ConfigArgs *c )
}
if
(
ap
.
restrict_lud
->
lud_attrs
!=
NULL
)
{
if
(
ap
.
restrict_lud
->
lud_attrs
[
0
]
!=
'\0'
)
{
if
(
ap
.
restrict_lud
->
lud_attrs
[
0
]
!=
NULL
)
{
snprintf
(
c
->
cr_msg
,
sizeof
(
c
->
cr_msg
),
"%s %s: attrs not allowed in restrict URI %s
\n
"
,
c
->
argv
[
0
],
c
->
argv
[
1
],
arg
);
...
...
servers/slapd/syntax.c
View file @
e22c4b64
...
...
@@ -219,8 +219,8 @@ syn_add(
}
assert
(
(
*
lsei
)
->
lsei_values
!=
NULL
);
if
(
(
*
lsei
)
->
lsei_values
[
0
]
==
'\0'
||
(
*
lsei
)
->
lsei_values
[
1
]
!=
'\0'
)
if
(
(
*
lsei
)
->
lsei_values
[
0
]
==
NULL
||
(
*
lsei
)
->
lsei_values
[
1
]
!=
NULL
)
{
Debug
(
LDAP_DEBUG_ANY
,
"syn_add(%s): exactly one substitute syntax must be present
\n
"
,
ssyn
->
ssyn_syn
.
syn_oid
,
0
,
0
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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