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
5bc5ae6b
Commit
5bc5ae6b
authored
Nov 17, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6309
parent
cfaceae8
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
5bc5ae6b
...
...
@@ -11,6 +11,7 @@ OpenLDAP 2.4.20 Engineering
Fixed slapd configArgs initialization (ITS#6363)
Fixed slapd debug handling of LDAP_DEBUG_ANY (ITS#6324)
Fixed slapd inclusion of ac/unistd.h (ITS#6342)
Fixed slapd invalid dn log message (ITS#6309)
Fixed slapd lockup on shutdown (ITS#6372)
Fixed slapd termination for one level DNs (ITS#6338)
Fixed slapd unused parameter (ITS#6356)
...
...
servers/slapd/search.c
View file @
5bc5ae6b
...
...
@@ -112,7 +112,7 @@ do_search(
rs
->
sr_err
=
dnPrettyNormal
(
NULL
,
&
base
,
&
op
->
o_req_dn
,
&
op
->
o_req_ndn
,
op
->
o_tmpmemctx
);
if
(
rs
->
sr_err
!=
LDAP_SUCCESS
)
{
Debug
(
LDAP_DEBUG_ANY
,
"%s do_search: invalid dn
(%s)
\n
"
,
Debug
(
LDAP_DEBUG_ANY
,
"%s do_search: invalid dn
:
\"
%s
\"
\n
"
,
op
->
o_log_prefix
,
base
.
bv_val
,
0
);
send_ldap_error
(
op
,
rs
,
LDAP_INVALID_DN_SYNTAX
,
"invalid DN"
);
goto
return_results
;
...
...
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