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
Christopher Ng
OpenLDAP
Commits
44be38c0
Commit
44be38c0
authored
22 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS#2371, fix BDB_SUBDIRs
parent
e12aec25
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
servers/slapd/back-bdb/back-bdb.h
+3
-3
3 additions, 3 deletions
servers/slapd/back-bdb/back-bdb.h
servers/slapd/back-bdb/init.c
+28
-9
28 additions, 9 deletions
servers/slapd/back-bdb/init.c
with
31 additions
and
12 deletions
servers/slapd/back-bdb/back-bdb.h
+
3
−
3
View file @
44be38c0
...
...
@@ -31,9 +31,9 @@ LDAP_BEGIN_DECL
#define BDB_MAX_ADD_LOOP 30
#ifdef BDB_SUBDIRS
#define BDB_TMP_SUBDIR
LDAP_DIRSEP
"tmp"
#define BDB_LG_SUBDIR
LDAP_DIRSEP
"log"
#define BDB_DATA_SUBDIR
LDAP_DIRSEP
"data"
#define BDB_TMP_SUBDIR "tmp"
#define BDB_LG_SUBDIR "log"
#define BDB_DATA_SUBDIR "data"
#endif
#define BDB_SUFFIX ".bdb"
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/back-bdb/init.c
+
28
−
9
View file @
44be38c0
...
...
@@ -208,12 +208,27 @@ bdb_db_open( BackendDB *be )
#ifdef BDB_SUBDIRS
{
char
dir
[
MAXPATHLEN
];
size_t
len
=
strlen
(
bdb
->
bi_dbenv_home
);
strcpy
(
dir
,
bdb
->
bi_dbenv_home
);
strcat
(
&
dir
[
len
],
BDB_TMP_SUBDIR
);
char
dir
[
MAXPATHLEN
],
*
ptr
;
if
(
bdb
->
bi_dbenv_home
[
0
]
==
'.'
)
{
/* If home is a relative path, relative subdirs
* are just concat'd by BDB. We don't want the
* path to be concat'd twice, e.g.
* ./test-db/./test-db/tmp
*/
ptr
=
dir
;
}
else
{
ptr
=
lutil_strcopy
(
dir
,
bdb
->
bi_dbenv_home
);
*
ptr
++
=
LDAP_DIRSEP
[
0
];
#ifdef HAVE_EBCDIC
__atoe
(
dir
);
#endif
}
strcpy
(
ptr
,
BDB_TMP_SUBDIR
);
#ifdef HAVE_EBCDIC
__atoe
(
ptr
);
#endif
rc
=
bdb
->
bi_dbenv
->
set_tmp_dir
(
bdb
->
bi_dbenv
,
dir
);
if
(
rc
!=
0
)
{
#ifdef NEW_LOGGING
...
...
@@ -228,8 +243,10 @@ bdb_db_open( BackendDB *be )
return
rc
;
}
strcat
(
&
dir
[
len
],
BDB_LG_SUBDIR
);
strcpy
(
ptr
,
BDB_LG_SUBDIR
);
#ifdef HAVE_EBCDIC
__atoe
(
ptr
);
#endif
rc
=
bdb
->
bi_dbenv
->
set_lg_dir
(
bdb
->
bi_dbenv
,
dir
);
if
(
rc
!=
0
)
{
#ifdef NEW_LOGGING
...
...
@@ -244,8 +261,10 @@ bdb_db_open( BackendDB *be )
return
rc
;
}
strcat
(
&
dir
[
len
],
BDB_DATA_SUBDIR
);
strcpy
(
ptr
,
BDB_DATA_SUBDIR
);
#ifdef HAVE_EBCDIC
__atoe
(
ptr
);
#endif
rc
=
bdb
->
bi_dbenv
->
set_data_dir
(
bdb
->
bi_dbenv
,
dir
);
if
(
rc
!=
0
)
{
#ifdef NEW_LOGGING
...
...
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