Skip to content
Snippets Groups Projects
Commit 4b2febb3 authored by Howard Chu's avatar Howard Chu
Browse files

Allow users to change their own password by default, fix history check

when SafeModify is false.
parent 4ef7e08a
No related branches found
No related tags found
No related merge requests found
......@@ -365,6 +365,9 @@ ppolicy_get( Operation *op, Entry *e, PassPolicy *pp )
memset( pp, 0, sizeof(PassPolicy) );
/* Users can change their own password by default */
pp->pwdAllowUserChange = 1;
if ((a = attr_find( e->e_attrs, ad_pwdPolicySubentry )) == NULL) {
/*
* entry has no password policy assigned - use default
......@@ -1447,7 +1450,8 @@ ppolicy_modify( Operation *op, SlapReply *rs )
}
}
if (delmod && (pa = attr_find( e->e_attrs, pp.ad )) != NULL) {
/* pa is used in password history check below, be sure it's set */
if ((pa = attr_find( e->e_attrs, pp.ad )) != NULL && delmod) {
/*
* we have a password to check
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment