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
786a0807
Commit
786a0807
authored
Jan 31, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6812
parent
d269803c
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
786a0807
...
...
@@ -125,6 +125,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapo-syncprov mutex (ITS#6438)
Fixed slapo-syncprov mincsn check with MMR (ITS#6717)
Fixed slapo-syncprov control leak (ITS#6795)
Fixed slapo-syncprov error codes (ITS#6812)
Fixed slapo-translucent entry leak (ITS#6746)
Fixed contrib/autogroup install location (ITS#6684)
Fixed contrib/autogroup crash with ppolicy (ITS#6684)
...
...
servers/slapd/overlays/syncprov.c
View file @
786a0807
...
...
@@ -225,10 +225,10 @@ syncprov_state_ctrl(
if
(
ret
<
0
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"slap_build_sync_ctrl: ber_flatten2 failed
\n
"
,
0
,
0
,
0
);
"slap_build_sync_ctrl: ber_flatten2 failed
(%d)
\n
"
,
ret
,
0
,
0
);
send_ldap_error
(
op
,
rs
,
LDAP_OTHER
,
"internal error"
);
return
ret
;
return
LDAP_OTHER
;
}
return
LDAP_SUCCESS
;
...
...
@@ -271,10 +271,10 @@ syncprov_done_ctrl(
if
(
ret
<
0
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"syncprov_done_ctrl: ber_flatten2 failed
\n
"
,
0
,
0
,
0
);
"syncprov_done_ctrl: ber_flatten2 failed
(%d)
\n
"
,
ret
,
0
,
0
);
send_ldap_error
(
op
,
rs
,
LDAP_OTHER
,
"internal error"
);
return
ret
;
return
LDAP_OTHER
;
}
return
LDAP_SUCCESS
;
...
...
@@ -338,10 +338,10 @@ syncprov_sendinfo(
if
(
ret
<
0
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"syncprov_sendinfo: ber_flatten2 failed
\n
"
,
0
,
0
,
0
);
"syncprov_sendinfo: ber_flatten2 failed
(%d)
\n
"
,
ret
,
0
,
0
);
send_ldap_error
(
op
,
rs
,
LDAP_OTHER
,
"internal error"
);
return
ret
;
return
LDAP_OTHER
;
}
rs
->
sr_rspoid
=
LDAP_SYNC_INFO
;
...
...
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