]> git.sur5r.net Git - openldap/commitdiff
cleanup & silence warnings
authorPierangelo Masarati <ando@openldap.org>
Mon, 11 Apr 2005 21:35:34 +0000 (21:35 +0000)
committerPierangelo Masarati <ando@openldap.org>
Mon, 11 Apr 2005 21:35:34 +0000 (21:35 +0000)
servers/slapd/acl.c
servers/slapd/aclparse.c

index 7404cda5b08a04cb1245e868720339b7b5c9ccac..3bcd3065c6a12a872b2fef38156fa1b2db76c748 100644 (file)
@@ -54,7 +54,9 @@ static struct berval
        aci_bv_br_entry         = BER_BVC("[entry]"),
        aci_bv_br_all           = BER_BVC("[all]"),
        aci_bv_access_id        = BER_BVC("access-id"),
+#if 0
        aci_bv_anonymous        = BER_BVC("anonymous"),
+#endif
        aci_bv_public           = BER_BVC("public"),
        aci_bv_users            = BER_BVC("users"),
        aci_bv_self             = BER_BVC("self"),
@@ -69,7 +71,9 @@ static struct berval
        aci_bv_ip_eq            = BER_BVC("IP="),
 #ifdef LDAP_PF_LOCAL
        aci_bv_path_eq          = BER_BVC("PATH="),
+#if 0
        aci_bv_dirsep           = BER_BVC(LDAP_DIRSEP),
+#endif
 #endif /* LDAP_PF_LOCAL */
        
        aci_bv_group_class      = BER_BVC(SLAPD_GROUP_CLASS),
@@ -280,7 +284,7 @@ access_allowed_mask(
        }
 
        /* use backend default access if no backend acls */
-       if( be != NULL && be->be_acl == NULL ) {
+       if ( /* be != NULL && */ be->be_acl == NULL ) {
                Debug( LDAP_DEBUG_ACL,
                        "=> access_allowed: backend default %s access %s to \"%s\"\n",
                        access2str( access ),
index 2466284e1d7188b848a7a3d90ab70362fd249cbd..0776e0db26409fc0d1a6bc8fca520b6a86c94291 100644 (file)
@@ -63,7 +63,6 @@ static void           acl_regex_normalized_dn(const char *src, struct berval *pat);
 
 #ifdef LDAP_DEBUG
 static void            print_acl(Backend *be, AccessControl *a);
-static void            print_access(Access *b);
 #endif
 
 static int             check_scope( BackendDB *be, AccessControl *a );
@@ -2462,10 +2461,9 @@ access2text( Access *b, char *ptr )
 void
 acl_unparse( AccessControl *a, struct berval *bv )
 {
-       Access *b;
-       char *ptr;
-       int             to = 0;
-       struct berval abv;
+       Access  *b;
+       char    *ptr;
+       int     to = 0;
 
        bv->bv_val = aclbuf;
        bv->bv_len = 0;
@@ -2542,8 +2540,6 @@ acl_unparse( AccessControl *a, struct berval *bv )
 static void
 print_acl( Backend *be, AccessControl *a )
 {
-       int             to = 0;
-       Access  *b;
        struct berval bv;
 
        acl_unparse( a, &bv );