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
cfc07409
Commit
cfc07409
authored
Sep 03, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5641
parent
1e02ef61
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
cfc07409
...
...
@@ -15,6 +15,7 @@ OpenLDAP 2.4.12 Engineering
Fixed slapo-rwm callback cleanup (ITS#5601)
Fixed slapo-rwm attr mapping and merging (ITS#5624)
Fixed slapo-unique filter validation (ITS#5581)
Fixed slapo-unique suffix testing (ITS#5641)
Build Environment
Fixed ODBC library detection (ITS#5602)
Documentation
...
...
servers/slapd/overlays/unique.c
View file @
cfc07409
...
...
@@ -197,6 +197,15 @@ unique_new_domain_uri ( unique_domain_uri **urip,
goto
exit
;
}
if
(
be
->
be_nsuffix
==
NULL
)
{
snprintf
(
c
->
cr_msg
,
sizeof
(
c
->
cr_msg
),
"suffix must be set"
);
Debug
(
LDAP_DEBUG_CONFIG
,
"unique config: %s
\n
"
,
c
->
cr_msg
,
NULL
,
NULL
);
rc
=
ARG_BAD_CONF
;
goto
exit
;
}
if
(
!
dnIsSuffix
(
&
uri
->
ndn
,
&
be
->
be_nsuffix
[
0
]
)
)
{
snprintf
(
c
->
cr_msg
,
sizeof
(
c
->
cr_msg
),
"dn <%s> is not a suffix of backend base dn <%s>"
,
...
...
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