From 3ac5b91a2f648bd47cecbe29c3de816523e5c830 Mon Sep 17 00:00:00 2001 From: Emmanuel Dreyfus Date: Sat, 15 Nov 2008 11:09:03 +0000 Subject: [PATCH] Fix warnings an a real bug hidden by the lack of warning... --- servers/slapd/acl.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/servers/slapd/acl.c b/servers/slapd/acl.c index 6243a3edf6..8151494d97 100644 --- a/servers/slapd/acl.c +++ b/servers/slapd/acl.c @@ -634,12 +634,10 @@ slap_acl_get( } if ( a->acl_attrval_style == ACL_STYLE_REGEX ) { - int rc; - Debug( LDAP_DEBUG_ACL, "acl_get: valpat %s\n", a->acl_attrval.bv_val, 0, 0 ); - if ( rc = regexec ( &a->acl_attrval_re, + if ( regexec ( &a->acl_attrval_re, val->bv_val, matches->val_count, matches->val_data, 0 ) ) @@ -804,7 +802,6 @@ acl_mask_dn( AclRegexMatches tmp_matches, *tmp_matchesp = &tmp_matches; int rc = 0; - int dnoffset; regmatch_t *tmp_data; MATCHES_MEMSET( &tmp_matches ); @@ -1140,7 +1137,9 @@ slap_acl_mask( char accessmaskbuf[ACCESSMASK_MAXLEN]; #endif /* DEBUG */ const char *attr; +#ifdef SLAP_DYNACL slap_mask_t a2pmask = ACL_ACCESS2PRIV( access ); +#endif /* SLAP_DYNACL */ assert( a != NULL ); assert( mask != NULL ); -- 2.39.5