Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dimitar Stoychev
OpenLDAP
Commits
fbb72268
Commit
fbb72268
authored
21 years ago
by
Pierangelo Masarati
Browse files
Options
Downloads
Patches
Plain Diff
warn if no suffix or no init function are present
parent
1a9bc665
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/backend.c
+31
-0
31 additions, 0 deletions
servers/slapd/backend.c
with
31 additions
and
0 deletions
servers/slapd/backend.c
+
31
−
0
View file @
fbb72268
...
...
@@ -172,6 +172,8 @@ int backend_init(void)
binfo
[
nBackendInfo
].
bi_type
!=
NULL
;
nBackendInfo
++
)
{
assert
(
binfo
[
nBackendInfo
].
bi_init
);
rc
=
binfo
[
nBackendInfo
].
bi_init
(
&
binfo
[
nBackendInfo
]
);
if
(
rc
!=
0
)
{
...
...
@@ -223,6 +225,21 @@ int backend_add(BackendInfo *aBackendInfo)
{
int
rc
=
0
;
if
(
aBackendInfo
->
bi_init
==
NULL
)
{
#ifdef NEW_LOGGING
LDAP_LOG
(
BACKEND
,
ERR
,
"backend_add: backend type
\"
%s
\"
does not have the "
"(mandatory)init function
\n
"
,
aBackendInfo
->
bi_type
,
0
,
0
);
#else
Debug
(
LDAP_DEBUG_ANY
,
"backend_add: backend type
\"
%s
\"
does not have the "
"(mandatory)init function
\n
"
,
aBackendInfo
->
bi_type
,
0
,
0
);
#endif
return
-
1
;
}
if
((
rc
=
aBackendInfo
->
bi_init
(
aBackendInfo
))
!=
0
)
{
#ifdef NEW_LOGGING
LDAP_LOG
(
BACKEND
,
ERR
,
...
...
@@ -360,6 +377,20 @@ int backend_startup(Backend *be)
LDAP_TAILQ_INIT
(
&
backendDB
[
i
].
be_pending_csn_list
);
if
(
backendDB
[
i
].
be_suffix
==
NULL
)
{
#ifdef NEW_LOGGING
LDAP_LOG
(
BACKEND
,
CRIT
,
"backend_startup: warning, database %d (%s) "
"has no suffix
\n
"
,
i
,
backendDB
[
i
].
bd_info
->
bi_type
,
0
);
#else
Debug
(
LDAP_DEBUG_ANY
,
"backend_startup: warning, database %d (%s) "
"has no suffix
\n
"
,
i
,
backendDB
[
i
].
bd_info
->
bi_type
,
0
);
#endif
}
if
(
backendDB
[
i
].
bd_info
->
bi_db_open
)
{
rc
=
backendDB
[
i
].
bd_info
->
bi_db_open
(
&
backendDB
[
i
]
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment