]> git.sur5r.net Git - openldap/commitdiff
silence warnings
authorPierangelo Masarati <ando@openldap.org>
Tue, 16 Sep 2008 14:44:24 +0000 (14:44 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 16 Sep 2008 14:44:24 +0000 (14:44 +0000)
servers/slapd/back-bdb/dn2id.c
servers/slapd/back-bdb/tools.c
servers/slapd/back-ldap/init.c
servers/slapd/backover.c
servers/slapd/bconfig.c
servers/slapd/overlays/collect.c
servers/slapd/overlays/constraint.c
servers/slapd/overlays/syncprov.c

index d28ed33f73483b90b2aa4bc979e48ad63fc417c3..ec1d70c69ae8fbd381b07461bf5d972fd50e6a37 100644 (file)
@@ -620,7 +620,6 @@ hdb_dn2id_add(
                }
        }
 
-func_leave:
        op->o_tmpfree( d, op->o_tmpmemctx );
        Debug( LDAP_DEBUG_TRACE, "<= hdb_dn2id_add 0x%lx: %d\n", e->e_id, rc, 0 );
 
index 235e35042e22a0f12e2a25f2ef2f0e8d6d36ebfc..eb09962c78d553a3e664238cc8b0429e2765021d 100644 (file)
@@ -241,7 +241,6 @@ ID bdb_tool_dn2id_get(
 
 Entry* bdb_tool_entry_get( BackendDB *be, ID id )
 {
-       struct bdb_info *bdb = (struct bdb_info *) be->be_private;
        Entry *e = NULL;
        char *dptr;
        int rc, eoff;
@@ -298,6 +297,7 @@ Entry* bdb_tool_entry_get( BackendDB *be, ID id )
                e->e_id = id;
 #ifdef BDB_HIER
                if ( slapMode & SLAP_TOOL_READONLY ) {
+                       struct bdb_info *bdb = (struct bdb_info *) be->be_private;
                        EntryInfo *ei = NULL;
                        Operation op = {0};
                        Opheader ohdr = {0};
index fa32fd47f4832c2930157ffb86638c7241a57a8d..22d7adc53f7ec4d646339d25a6a25132cf7b1a2c 100644 (file)
@@ -233,14 +233,10 @@ ldap_back_db_open( BackendDB *be, ConfigReply *cr )
        if ( rc != 0 ) {
                /* ignore by now */
                rc = 0;
-#if 0
-               goto fail;
-#endif
        }
 
        li->li_flags |= LDAP_BACK_F_ISOPEN;
 
-fail:;
        return rc;
 }
 
index e14a0192a58a967e42a4c25f18c52ccfd1163140..f0194a739ddef138b17eacfbe05a9bc833353762 100644 (file)
@@ -1107,7 +1107,7 @@ void
 overlay_remove( BackendDB *be, slap_overinst *on )
 {
        slap_overinfo *oi = on->on_info;
-       slap_overinst **oidx, *on2;
+       slap_overinst **oidx;
 
        /* remove overlay from oi_list an call db_close and db_destroy
         * handlers */
index 56a9fdb151289ef47760b32e230b2cd464bf0b98..6aa066c7661847c3834cd48a797b62306f7df424 100644 (file)
@@ -5236,8 +5236,6 @@ config_back_delete( Operation *op, SlapReply *rs )
        CfBackInfo *cfb;
        CfEntryInfo *ce, *last, *ce2;
 
-       slap_mask_t mask;
-
        cfb = (CfBackInfo *)op->o_bd->be_private;
 
        ce = config_find_base( cfb->cb_root, &op->o_req_ndn, &last );
@@ -5249,7 +5247,7 @@ config_back_delete( Operation *op, SlapReply *rs )
                rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
        } else if ( ce->ce_type == Cft_Overlay || ce->ce_type == Cft_Database ){
                char *iptr;
-               int count, ixold, rc;
+               int count, ixold;
 
                ldap_pvt_thread_pool_pause( &connection_pool );
 
index 00834d3c06b546c102f07a832405987c09e9d6a6..4852022f95da3d793ccab842c0212ad8d219426e 100644 (file)
@@ -31,6 +31,8 @@
 #include "slap.h"
 #include "config.h"
 
+#include "lutil.h"
+
 /* This is a cheap hack to implement a collective attribute.
  *
  * This demonstration overlay looks for a specified attribute in an
@@ -266,7 +268,7 @@ collect_modify( Operation *op, SlapReply *rs)
        collect_info *ci = on->on_bi.bi_private;
        Modifications *ml;
        char errMsg[100];
-       int rc, idx;
+       int idx;
 
        for ( ml = op->orm_modlist; ml != NULL; ml = ml->sml_next) {
                for (; ci; ci=ci->ci_next ) {
index 4e958e05a57a79850c3c61862941408743476aa0..6d8b40e5e7f1ae361b254c31b1ec0babe3955247 100644 (file)
@@ -498,7 +498,6 @@ static int
 constraint_add( Operation *op, SlapReply *rs )
 {
        slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
-       Backend *be = op->o_bd;
        Attribute *a;
        constraint *c = on->on_bi.bi_private, *cp;
        BerVarray b = NULL;
index 5c9cff1317342113c90e63b20a72a6eb90ab5d79..e05ee7fe4749ab497f6b290144f5b2f7f0b1d8b8 100644 (file)
@@ -393,9 +393,6 @@ static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
 static int
 syncprov_findbase( Operation *op, fbase_cookie *fc )
 {
-       opcookie *opc = op->o_callback->sc_private;
-       slap_overinst *on = opc->son;
-
        /* Use basic parameters from syncrepl search, but use
         * current op's threadctx / tmpmemctx
         */