mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 06:01:23 -05:00
Fix whitespace in ppolicy.c
This commit is contained in:
parent
a3bee86700
commit
49504c16d2
1 changed files with 5 additions and 5 deletions
|
|
@ -865,14 +865,14 @@ ppolicy_get( Operation *op, Entry *e, PassPolicy *pp )
|
|||
}
|
||||
|
||||
if ((a = attr_find( pe->e_attrs, ad_pwdLockout )))
|
||||
pp->pwdLockout = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
pp->pwdLockout = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
if ((a = attr_find( pe->e_attrs, ad_pwdMustChange )))
|
||||
pp->pwdMustChange = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
pp->pwdMustChange = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
if ((a = attr_find( pe->e_attrs, ad_pwdAllowUserChange )))
|
||||
pp->pwdAllowUserChange = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
pp->pwdAllowUserChange = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
if ((a = attr_find( pe->e_attrs, ad_pwdSafeModify )))
|
||||
pp->pwdSafeModify = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
|
||||
pp->pwdSafeModify = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
||||
|
||||
if ( pp->pwdMaxRecordedFailure < pp->pwdMaxFailure )
|
||||
pp->pwdMaxRecordedFailure = pp->pwdMaxFailure;
|
||||
if ( !pp->pwdMaxRecordedFailure )
|
||||
|
|
|
|||
Loading…
Reference in a new issue