Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
openldap
OpenLDAP
Merge requests
!304
ITS
#8698
Propagate policy checker message through even if using PW Extop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ITS
#8698
Propagate policy checker message through even if using PW Extop
ondra/openldap:its8698
into
master
Overview
0
Commits
2
Pipelines
4
Changes
2
Merged
Ondřej Kuzník
requested to merge
ondra/openldap:its8698
into
master
4 years ago
Overview
0
Commits
2
Pipelines
4
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
889fd00e
4 years ago
master (base)
and
latest version
latest version
51c444b0
2 commits,
4 years ago
version 1
889fd00e
2 commits,
4 years ago
2 files
+
37
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
servers/slapd/overlays/ppolicy.c
+
30
−
2
Options
@@ -2326,6 +2326,21 @@ ppolicy_mod_cb( Operation *op, SlapReply *rs )
return
SLAP_CB_CONTINUE
;
}
static
int
ppolicy_text_cleanup
(
Operation
*
op
,
SlapReply
*
rs
)
{
slap_callback
*
sc
=
op
->
o_callback
;
if
(
rs
->
sr_text
==
sc
->
sc_private
)
{
rs
->
sr_text
=
NULL
;
}
free
(
sc
->
sc_private
);
op
->
o_callback
=
sc
->
sc_next
;
op
->
o_tmpfree
(
sc
,
op
->
o_tmpmemctx
);
return
SLAP_CB_CONTINUE
;
}
static
int
ppolicy_modify
(
Operation
*
op
,
SlapReply
*
rs
)
{
@@ -3083,8 +3098,21 @@ return_results:
}
send_ldap_result
(
op
,
rs
);
if
(
free_txt
)
{
free
(
(
char
*
)
txt
);
rs
->
sr_text
=
NULL
;
if
(
is_pwdexop
)
{
slap_callback
*
cb
;
cb
=
op
->
o_tmpcalloc
(
sizeof
(
ppbind
)
+
sizeof
(
slap_callback
),
1
,
op
->
o_tmpmemctx
);
/* Setup a callback so we can free the text when sent */
cb
->
sc_cleanup
=
ppolicy_text_cleanup
;
cb
->
sc_private
=
(
void
*
)
txt
;
overlay_callback_after_backover
(
op
,
cb
,
1
);
}
else
{
if
(
rs
->
sr_text
==
txt
)
{
rs
->
sr_text
=
NULL
;
}
free
(
(
char
*
)
txt
);
}
}
if
(
send_ctrl
)
{
if
(
is_pwdexop
)
{
Loading