]> git.sur5r.net Git - openldap/commitdiff
cleanup
authorPierangelo Masarati <ando@openldap.org>
Mon, 25 Jul 2005 20:47:01 +0000 (20:47 +0000)
committerPierangelo Masarati <ando@openldap.org>
Mon, 25 Jul 2005 20:47:01 +0000 (20:47 +0000)
servers/slapd/aclparse.c
servers/slapd/result.c

index b6d47530880967b5c2661886d84b08872fe39193..0ab9510aef6ce7e74fbab2a001f1ae0e630e63fc 100644 (file)
@@ -2290,7 +2290,7 @@ acl_destroy( AccessControl *a, AccessControl *end )
 {
        AccessControl *n;
 
-       for (; a && a!= end; a=n) {
+       for ( ; a && a != end; a = n ) {
                n = a->acl_next;
                acl_free( a );
        }
index 3011b1f46d56a6290e9ed42667831804361a2845..081eae7b0ec6d8929f5c0536ae7a797e76275dd0 100644 (file)
@@ -731,7 +731,7 @@ slap_send_search_entry( Operation *op, SlapReply *rs )
                struct berval   bv;
 
                bv.bv_len = entry_flatsize( rs->sr_entry, 0 );
-               bv.bv_val = op->o_tmpalloc(bv.bv_len, op->o_tmpmemctx );
+               bv.bv_val = op->o_tmpalloc( bv.bv_len, op->o_tmpmemctx );
 
                ber_init2( ber, &bv, LBER_USE_DER );
                ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );