]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Fix whitespace in ppolicy.c
authorOndřej Kuzník <ondra@mistotebe.net>
Wed, 3 Jun 2020 09:57:43 +0000 (10:57 +0100)
committerQuanah Gibson-Mount <quanah@openldap.org>
Fri, 3 Jul 2020 20:42:14 +0000 (20:42 +0000)
servers/slapd/overlays/ppolicy.c

index 3e982cd5efbb47bd2e83bdf932ae2334fa34e406..4d83078729c7a55d08f6aac42dc02a47714c5b35 100644 (file)
@@ -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 )