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
ingo Voss
OpenLDAP
Commits
9035965b
Commit
9035965b
authored
Jan 08, 2006
by
Kurt Zeilenga
Browse files
Additional SLAPI updates from HEAD
parent
295759a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/slapi/slapi_overlay.c
View file @
9035965b
...
...
@@ -479,7 +479,7 @@ slapi_over_unmerge_controls( Operation *op, SlapReply *rs )
slapi_pblock_get
(
pb
,
SLAPI_X_OLD_RESCONTROLS
,
(
void
**
)
&
rs_ctrls
);
if
(
rs
->
sr
_ctrls
==
NULL
||
rs
->
sr_ctrls
==
rs_ctrls
)
{
if
(
rs_ctrls
==
NULL
||
rs
->
sr_ctrls
==
rs_ctrls
)
{
/* no copying done */
return
LDAP_SUCCESS
;
}
...
...
servers/slapd/slapi/slapi_utils.c
View file @
9035965b
...
...
@@ -2717,7 +2717,6 @@ LDAPMod **slapi_int_modifications2ldapmods( Modifications *modlist )
modp
->
mod_type
=
slapi_ch_strdup
(
ml
->
sml_desc
->
ad_cname
.
bv_val
);
}
else
{
modp
->
mod_type
=
slapi_ch_strdup
(
ml
->
sml_type
.
bv_val
);
BER_BVZERO
(
&
ml
->
sml_type
);
}
if
(
ml
->
sml_values
!=
NULL
)
{
...
...
@@ -3100,7 +3099,7 @@ int slapi_int_access_allowed( Operation *op,
break
;
}
rc
=
slapi_int_get_plugins
(
op
->
o_bd
,
SLAPI_PLUGIN_ACL_ALLOW_ACCESS
,
(
SLAPI_FUNC
**
)
&
tmpPlugin
);
rc
=
slapi_int_get_plugins
(
frontendDB
,
SLAPI_PLUGIN_ACL_ALLOW_ACCESS
,
(
SLAPI_FUNC
**
)
&
tmpPlugin
);
if
(
rc
!=
LDAP_SUCCESS
||
tmpPlugin
==
NULL
)
{
/* nothing to do; allowed access */
return
1
;
...
...
Write
Preview
Markdown
is supported
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