Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
13e0b0e0
Commit
13e0b0e0
authored
Nov 11, 2008
by
Quanah Gibson-Mount
Browse files
ITS
#5803
parent
00aa95a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
13e0b0e0
...
...
@@ -14,6 +14,7 @@ OpenLDAP 2.4.13 Engineering
Fixed slapd control criticality (ITS#5785)
Added slapd dn.this search limits (ITS#5734)
Fixed slapd error status on shutdown (ITS#5745)
Fixed slapd filter substring handling (ITS#5803)
Fixed slapd nameUIDPretty bitstring parsing (ITS#5750)
Fixed slapd null termination of password (ITS#5794)
Fixed slapd overlay/database open with real structure (ITS#5724)
...
...
servers/slapd/filter.c
View file @
13e0b0e0
...
...
@@ -385,6 +385,19 @@ get_ssa(
rc
=
LDAP_PROTOCOL_ERROR
;
if
(
ssa
.
sa_desc
->
ad_type
->
sat_substr
==
NULL
)
{
for
(
tag
=
ber_first_element
(
ber
,
&
len
,
&
last
);
tag
!=
LBER_DEFAULT
;
tag
=
ber_next_element
(
ber
,
&
len
,
last
)
)
{
/* eat all */
rc
=
ber_scanf
(
ber
,
"x"
);
}
rc
=
LDAP_INVALID_SYNTAX
;
goto
return_error
;
}
for
(
tag
=
ber_first_element
(
ber
,
&
len
,
&
last
);
tag
!=
LBER_DEFAULT
;
tag
=
ber_next_element
(
ber
,
&
len
,
last
)
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment