Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
c6a45e14
Commit
c6a45e14
authored
Oct 23, 2007
by
Quanah Gibson-Mount
Browse files
ITS#5189
parent
27902530
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
c6a45e14
...
...
@@ -15,6 +15,7 @@ OpenLDAP 2.4.6 Engineering
Fixed slapd-bdb/hdb suffix logging (ITS#5128)
Fixed slapd-bdb/hdb IDL LRU handling (ITS#5121)
Fixed slapd-bdb/hdb cachesize config check (ITS#5122)
Fixed slapd-bdb/hdb ldap result code as system errno (ITS#5189)
Fixed slapd-config objectclass handling (ITS#4884)
Fixed slapd-ldap SASL idassert w/o authcId
Fixed slapd-ldap search control parsing (ITS#5138)
...
...
servers/slapd/back-bdb/tools.c
View file @
c6a45e14
...
...
@@ -532,6 +532,7 @@ ID bdb_tool_entry_put(
if
(
rc
!=
0
)
{
snprintf
(
text
->
bv_val
,
text
->
bv_len
,
"index_entry_add failed: %s (%d)"
,
rc
==
LDAP_OTHER
?
"Internal error"
:
db_strerror
(
rc
),
rc
);
Debug
(
LDAP_DEBUG_ANY
,
"=> "
LDAP_XSTRING
(
bdb_tool_entry_put
)
": %s
\n
"
,
...
...
@@ -571,6 +572,7 @@ done:
TXN_ABORT
(
tid
);
snprintf
(
text
->
bv_val
,
text
->
bv_len
,
"txn_aborted! %s (%d)"
,
rc
==
LDAP_OTHER
?
"Internal error"
:
db_strerror
(
rc
),
rc
);
Debug
(
LDAP_DEBUG_ANY
,
"=> "
LDAP_XSTRING
(
bdb_tool_entry_put
)
": %s
\n
"
,
...
...
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