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
Joe Martin
OpenLDAP
Commits
6041828a
Commit
6041828a
authored
May 28, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5487
parent
88db86e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
6041828a
...
...
@@ -17,6 +17,7 @@ OpenLDAP 2.4.10 Engineering
Fixed slapo-refint to allow setting modifiers name (ITS#5505)
Fixed slapo-syncprov csn update with delta-syncrepl (ITS#5493)
Fixed slapo-syncprov op2.o_extra reset (ITS#5501, #5506)
Fixed slapo-syncprov searching wrong backend (ITS#5487)
Fixed slapo-syncprov sending ops without queued CSNs (ITS#5465)
Fixed slapo-unique config structs (ITS#5526)
Fixed slapo-unique filter terminator (ITS#5511)
...
...
servers/slapd/overlays/syncprov.c
View file @
6041828a
...
...
@@ -404,7 +404,6 @@ syncprov_findbase( Operation *op, fbase_cookie *fc )
slap_callback
cb
=
{
0
};
Operation
fop
;
SlapReply
frs
=
{
REP_RESULT
};
BackendInfo
*
bi
;
int
rc
;
fc
->
fss
->
s_flags
^=
PS_FIND_BASE
;
...
...
@@ -412,11 +411,10 @@ syncprov_findbase( Operation *op, fbase_cookie *fc )
fop
=
*
fc
->
fss
->
s_op
;
fop
.
o_bd
=
fop
.
o_bd
->
bd_self
;
fop
.
o_hdr
=
op
->
o_hdr
;
fop
.
o_bd
=
op
->
o_bd
;
fop
.
o_time
=
op
->
o_time
;
fop
.
o_tincr
=
op
->
o_tincr
;
bi
=
op
->
o_bd
->
bd_info
;
cb
.
sc_response
=
findbase_cb
;
cb
.
sc_private
=
fc
;
...
...
@@ -434,8 +432,7 @@ syncprov_findbase( Operation *op, fbase_cookie *fc )
fop
.
ors_filter
=
&
generic_filter
;
fop
.
ors_filterstr
=
generic_filterstr
;
rc
=
overlay_op_walk
(
&
fop
,
&
frs
,
op_search
,
on
->
on_info
,
on
);
op
->
o_bd
->
bd_info
=
bi
;
rc
=
fop
.
o_bd
->
be_search
(
&
fop
,
&
frs
);
}
else
{
ldap_pvt_thread_mutex_unlock
(
&
fc
->
fss
->
s_mutex
);
fc
->
fbase
=
1
;
...
...
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