Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
3078cbcf
Commit
3078cbcf
authored
Sep 03, 2008
by
Quanah Gibson-Mount
Browse files
ITS
#5618
parent
67be96ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
3078cbcf
...
...
@@ -9,6 +9,7 @@ OpenLDAP 2.4.12 Engineering
Fixed slapd firstComponentMatch normalization (ITS#5634)
Fixed slapd overlay control registration (ITS#5649)
Fixed slapd socket closing on Windows (ITS#5606)
Fixed slapd syncrepl error logging (ITS#5618)
Fixed slapd-ldap,slapd-meta invalid filter behavior (ITS#5614)
Fixed slapd-meta quarantine behavior (ITS#5592)
Fixed slapd-meta objectClass filtering (ITS#5647)
...
...
servers/slapd/syncrepl.c
View file @
3078cbcf
...
...
@@ -579,6 +579,9 @@ do_syncrep1(
ldap_set_option
(
si
->
si_ld
,
LDAP_OPT_TIMELIMIT
,
&
si
->
si_tlimit
);
rc
=
LDAP_DEREF_NEVER
;
/* actually could allow DEREF_FINDING */
ldap_set_option
(
si
->
si_ld
,
LDAP_OPT_DEREF
,
&
rc
);
si
->
si_syncCookie
.
rid
=
si
->
si_rid
;
/* whenever there are multiple data sources possible, advertise sid */
...
...
@@ -911,6 +914,11 @@ do_syncrep2(
rc
=
err
;
goto
done
;
}
if
(
err
)
{
Debug
(
LDAP_DEBUG_ANY
,
"do_syncrep2: %s LDAP_RES_SEARCH_RESULT (%d) %s
\n
"
,
si
->
si_ridtxt
,
err
,
ldap_err2string
(
err
)
);
}
if
(
rctrls
)
{
rctrlp
=
*
rctrls
;
ber_init2
(
ber
,
&
rctrlp
->
ldctl_value
,
LBER_USE_DER
);
...
...
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