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
ingo Voss
OpenLDAP
Commits
0fe40e4e
Commit
0fe40e4e
authored
Dec 11, 2004
by
Pierangelo Masarati
Browse files
temporarily work around ITS#3433; need to understand why it happens and how to fix it correctly
parent
fe308507
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/backover.c
View file @
0fe40e4e
...
...
@@ -253,13 +253,21 @@ over_op_func(
enum
op_which
which
)
{
slap_overinfo
*
oi
=
op
->
o_bd
->
bd_info
->
bi_private
;
slap_overinst
*
on
=
oi
->
oi_list
;
slap_overinfo
*
oi
;
slap_overinst
*
on
;
BI_op_bind
**
func
;
BackendDB
*
be
=
op
->
o_bd
,
db
;
slap_callback
cb
=
{
NULL
,
over_back_response
,
NULL
,
NULL
};
int
rc
=
SLAP_CB_CONTINUE
;
if
(
op
->
o_bd
==
NULL
)
{
/* FIXME: happens for instance during abandon... */
return
0
;
}
oi
=
op
->
o_bd
->
bd_info
->
bi_private
;
on
=
oi
->
oi_list
;
if
(
!
SLAP_ISOVERLAY
(
op
->
o_bd
))
{
db
=
*
op
->
o_bd
;
db
.
be_flags
|=
SLAP_DBFLAG_OVERLAY
;
...
...
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