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
9fd7e512
Commit
9fd7e512
authored
Jan 04, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6748
parent
405aa10c
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGES
View file @
9fd7e512
...
...
@@ -54,6 +54,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapd-monitor hasSubordinates generation (ITS#6712)
Fixed slapd-sql with null objectClass (ITS#6616)
Fixed slapd-sql hasSubordinates generation (ITS#6712)
Fixed slapo-memberof log messages (ITS#6748)
Fixed slapo-pcache callback freeing (ITS#6640)
Fixed slapo-pcache to ignore undefined attrs (ITS#6600)
Fixed slapo-ppolicy don't update opattrs on consumers (ITS#6608)
...
...
servers/slapd/overlays/memberof.c
View file @
9fd7e512
...
...
@@ -401,9 +401,8 @@ memberof_value_modify(
if
(
rs2
.
sr_err
!=
LDAP_SUCCESS
)
{
char
buf
[
SLAP_TEXT_BUFLEN
];
snprintf
(
buf
,
sizeof
(
buf
),
"memberof_value_modify %s=
\"
%s
\"
failed err=%d text=%s"
,
ad
->
ad_cname
.
bv_val
,
new_dn
->
bv_val
,
rs2
.
sr_err
,
rs2
.
sr_text
?
rs2
.
sr_text
:
""
);
"memberof_value_modify %s=
\"
%s
\"
failed err=%d"
,
ad
->
ad_cname
.
bv_val
,
new_dn
->
bv_val
,
rs2
.
sr_err
);
Debug
(
LDAP_DEBUG_ANY
,
"%s: %s
\n
"
,
op
->
o_log_prefix
,
buf
,
0
);
}
...
...
@@ -436,9 +435,8 @@ memberof_value_modify(
if
(
rs2
.
sr_err
!=
LDAP_SUCCESS
)
{
char
buf
[
SLAP_TEXT_BUFLEN
];
snprintf
(
buf
,
sizeof
(
buf
),
"memberof_value_modify %s=
\"
%s
\"
failed err=%d text=%s"
,
ad
->
ad_cname
.
bv_val
,
old_dn
->
bv_val
,
rs2
.
sr_err
,
rs2
.
sr_text
?
rs2
.
sr_text
:
""
);
"memberof_value_modify %s=
\"
%s
\"
failed err=%d"
,
ad
->
ad_cname
.
bv_val
,
old_dn
->
bv_val
,
rs2
.
sr_err
);
Debug
(
LDAP_DEBUG_ANY
,
"%s: %s
\n
"
,
op
->
o_log_prefix
,
buf
,
0
);
}
...
...
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