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
3f20aa24
Commit
3f20aa24
authored
Feb 06, 2007
by
Howard Chu
Browse files
Partially revert prev commit, delete unused parameter, fix psearch response
parent
14034912
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/overlays/syncprov.c
View file @
3f20aa24
...
...
@@ -981,7 +981,7 @@ syncprov_qresp( opcookie *opc, syncops *so, int mode )
/* Don't send changes back to their originator */
sid
=
slap_parse_csn_sid
(
&
opc
->
sctxcsn
);
if
(
sid
==
so
->
s_sid
)
if
(
sid
>=
0
&&
sid
==
so
->
s_sid
)
return
LDAP_SUCCESS
;
sr
=
ch_malloc
(
sizeof
(
syncres
)
+
opc
->
suuid
.
bv_len
+
1
+
...
...
servers/slapd/syncrepl.c
View file @
3f20aa24
...
...
@@ -112,8 +112,7 @@ static int syncrepl_message_to_entry(
Modifications
**
,
Entry
**
,
int
);
static
int
syncrepl_entry
(
syncinfo_t
*
,
Operation
*
,
Entry
*
,
Modifications
**
,
int
,
struct
berval
*
,
struct
sync_cookie
*
);
Modifications
**
,
int
,
struct
berval
*
);
static
int
syncrepl_updateCookie
(
syncinfo_t
*
,
Operation
*
,
struct
berval
*
,
struct
sync_cookie
*
);
...
...
@@ -737,7 +736,7 @@ do_syncrep2(
&
modlist
,
&
entry
,
syncstate
)
)
==
LDAP_SUCCESS
)
{
if
(
(
rc
=
syncrepl_entry
(
si
,
op
,
entry
,
&
modlist
,
syncstate
,
&
syncUUID
,
&
syncCookie
)
)
==
LDAP_SUCCESS
&&
syncstate
,
&
syncUUID
)
)
==
LDAP_SUCCESS
&&
syncCookie
.
ctxcsn
)
{
rc
=
syncrepl_updateCookie
(
si
,
op
,
psub
,
&
syncCookie
);
...
...
@@ -1721,8 +1720,7 @@ syncrepl_entry(
Entry
*
entry
,
Modifications
**
modlist
,
int
syncstate
,
struct
berval
*
syncUUID
,
struct
sync_cookie
*
syncCookie
)
struct
berval
*
syncUUID
)
{
Backend
*
be
=
op
->
o_bd
;
slap_callback
cb
=
{
NULL
,
NULL
,
NULL
,
NULL
};
...
...
@@ -1880,11 +1878,21 @@ syncrepl_entry(
}
slap_op_time
(
&
op
->
o_time
,
&
op
->
o_tincr
);
if
(
syncCookie
->
ctxcsn
)
slap_queue_csn
(
op
,
syncCookie
->
ctxcsn
);
switch
(
syncstate
)
{
case
LDAP_SYNC_ADD
:
case
LDAP_SYNC_MODIFY
:
{
Attribute
*
a
=
attr_find
(
entry
->
e_attrs
,
slap_schema
.
si_ad_entryCSN
);
if
(
a
)
{
/* FIXME: op->o_csn is assumed to be
* on the thread's slab; this needs
* to be cleared ASAP.
* What happens if already present?
*/
assert
(
BER_BVISNULL
(
&
op
->
o_csn
)
);
op
->
o_csn
=
a
->
a_vals
[
0
];
}
}
retry_add:
;
if
(
BER_BVISNULL
(
&
dni
.
dn
)
)
{
...
...
@@ -2102,7 +2110,6 @@ retry_add:;
}
done:
slap_graduate_commit_csn
(
op
);
if
(
!
BER_BVISNULL
(
&
syncUUID_strrep
)
)
{
slap_sl_free
(
syncUUID_strrep
.
bv_val
,
op
->
o_tmpmemctx
);
BER_BVZERO
(
&
syncUUID_strrep
);
...
...
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