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
James Lowden
OpenLDAP
Commits
91dccd25
Commit
91dccd25
authored
Dec 16, 2020
by
Howard Chu
Committed by
Quanah Gibson-Mount
Dec 16, 2020
Browse files
ITS#9427 fix issuerAndThisUpdateCheck
parent
7c29f6a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
91dccd25
...
...
@@ -3809,7 +3809,7 @@ issuerAndThisUpdateCheck(
if
(
in
->
bv_len
<
STRLENOF
(
"{issuer
\"\"
,thisUpdate
\"
YYMMDDhhmmssZ
\"
}"
)
)
return
LDAP_INVALID_SYNTAX
;
if
(
in
->
bv_val
[
0
]
!=
'{'
&&
in
->
bv_val
[
in
->
bv_len
-
1
]
!=
'}'
)
{
if
(
in
->
bv_val
[
0
]
!=
'{'
||
in
->
bv_val
[
in
->
bv_len
-
1
]
!=
'}'
)
{
return
LDAP_INVALID_SYNTAX
;
}
...
...
Write
Preview
Markdown
is supported
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