]> git.sur5r.net Git - openldap/commitdiff
Silence "unused <something>" warnings
authorHallvard Furuseth <hallvard@openldap.org>
Thu, 14 Jul 2005 19:52:08 +0000 (19:52 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Thu, 14 Jul 2005 19:52:08 +0000 (19:52 +0000)
25 files changed:
servers/slapd/abandon.c
servers/slapd/ad.c
servers/slapd/back-bdb/cache.c
servers/slapd/back-bdb/config.c
servers/slapd/back-bdb/dn2id.c
servers/slapd/back-bdb/idl.c
servers/slapd/back-bdb/index.c
servers/slapd/back-bdb/init.c
servers/slapd/back-ldbm/close.c
servers/slapd/back-meta/candidates.c
servers/slapd/back-meta/compare.c
servers/slapd/back-meta/conn.c
servers/slapd/backover.c
servers/slapd/component.c
servers/slapd/controls.c
servers/slapd/ldapsync.c
servers/slapd/oc.c
servers/slapd/oidm.c
servers/slapd/phonetic.c
servers/slapd/root_dse.c
servers/slapd/saslauthz.c
servers/slapd/slapadd.c
servers/slapd/str2filter.c
servers/slapd/syncrepl.c
servers/slapd/value.c

index 95df80c2a59acc708742e04a7f7d029c6d032478..df2f937f497ad88b3dcadf832bfed1ac6ffc4f57 100644 (file)
@@ -36,7 +36,6 @@ do_abandon( Operation *op, SlapReply *rs )
 {
        ber_int_t       id;
        Operation       *o;
-       int             i;
 
        Debug( LDAP_DEBUG_TRACE, "do_abandon\n", 0, 0, 0 );
 
index 613ed8a658612eb80940bb4592c99ace80e74562..c690d2efdbd33f4b4501dbcdb3b474558e0503bc 100644 (file)
@@ -990,8 +990,6 @@ file2anlist( AttributeName *an, const char *fname, const char *brkstr )
        }
 
        while ( fgets( lcur, LBUFSIZ, fp ) != NULL ) {
-               char *str, *s, *next;
-               const char *delimstr = brkstr;
                if ( ( c = strchr( lcur, '\n' ) ) ) {
                        if ( c == line ) {
                                *c = '\0';
index d203586cc34fea0f91831acc4cd9edb1775cf0a7..5ef52a46c3f4c905027ef95c690070bda7ecc6a9 100644 (file)
@@ -884,9 +884,11 @@ bdb_cache_add(
        u_int32_t locker )
 {
        EntryInfo *new, ei;
-       struct berval rdn = e->e_name;
        DB_LOCK lock;
        int rc;
+#ifdef BDB_HIER
+       struct berval rdn = e->e_name;
+#endif
 
        ei.bei_id = e->e_id;
        ei.bei_parent = eip;
@@ -981,8 +983,10 @@ bdb_cache_modrdn(
        DB_LOCK *lock )
 {
        EntryInfo *ei = BEI(e), *pei;
-       struct berval rdn;
        int rc;
+#ifdef BDB_HIER
+       struct berval rdn;
+#endif
 
        /* Get write lock on data */
        rc =  bdb_cache_entry_db_relock( bdb->bi_dbenv, locker, ei, 1, 0, lock );
index 1c01c2296fceb30b32c5b70b9fa2acc6a0611277..9ac83de4474b95b00860326369be29e99b929685 100644 (file)
@@ -263,7 +263,7 @@ bdb_online_index( void *ctx, void *arg )
                id++;
                getnext = 1;
        }
-out:
+
        ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
        ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
        bdb->bi_index_task = NULL;
index 89bfae0ebf311dbe778078d638d30d458f43b047..3352278c061975a2a556e0ecebd15a0192e5d897 100644 (file)
@@ -555,7 +555,7 @@ hdb_dn2id_delete(
        DBT             key, data;
        DBC     *cursor;
        diskNode *d;
-       int rc, nrlen;
+       int rc;
        ID      nid;
        unsigned char dlen[2];
 
@@ -705,7 +705,6 @@ hdb_dn2id_parent(
        int             rc = 0;
        diskNode *d;
        char    *ptr;
-       unsigned char *pt2;
        ID      nid;
 
        DBTzero(&key);
index c00ba93235fc57eda585dd8dfaeecde3651eada5..5c5e0ef304eb3524127699796d603ddf3883f2d5 100644 (file)
@@ -1212,8 +1212,6 @@ ID bdb_idl_next( ID *ids, ID *cursor )
  */
 int bdb_idl_append_one( ID *ids, ID id )
 {
-       unsigned x;
-
        if (BDB_IDL_IS_RANGE( ids )) {
                /* if already in range, treat as a dup */
                if (id >= BDB_IDL_FIRST(ids) && id <= BDB_IDL_LAST(ids))
index 91c5a74626a2bd3ad58dd898de48a0d0041fb8be..e994e28ec184054694e30181bb5d2d40972c004c 100644 (file)
@@ -389,7 +389,7 @@ bdb_index_entry(
 #ifdef LDAP_COMP_MATCH
        ComponentReference *cr_list = NULL;
        ComponentReference *cr = NULL, *dupped_cr = NULL;
-       void* decoded_comp, *extracted_comp;
+       void* decoded_comp;
        ComponentSyntaxInfo* csi_attr;
        Syntax* syn;
        AttributeType* at;
index bfd5296266561b3a660ccec9f62136b83797727f..37ca981c3a534b033ed32a522aced7e0856489cb 100644 (file)
@@ -246,7 +246,6 @@ bdb_db_recover( BackendDB *be )
                return bdb_do_recovery( be );
        }
 
-re_exit:
        Debug( LDAP_DEBUG_ANY,
                "bdb_db_recover: Database cannot be recovered. "\
                "Restore from backup!\n", 0, 0, 0);
index 167f78d0fd98a08010736be262f756bee3014e5f..2e2090e28663f9c26acf83e0fd2613de9e7d07b3 100644 (file)
@@ -26,8 +26,6 @@
 int
 ldbm_back_db_close( Backend *be )
 {
-       struct ldbminfo *li = (struct ldbminfo *) be->be_private;
-
        Debug( LDAP_DEBUG_TRACE, "ldbm backend syncing\n", 0, 0, 0 );
 
        ldbm_cache_flush_all( be );
index 76023a8837f039a01dad55dc764f86ab277fb0f7..a59606ff702c67b449f02b1385bb7d0fc38f8b51 100644 (file)
  * A possible extension will include the handling of multiple suffixes
  */
 
-static int
-meta_back_is_candidate_unique(
-       metainfo_t      *mi,
-       struct berval   *ndn );
 
 /*
  * returns 1 if suffix is candidate for dn, otherwise 0
@@ -80,6 +76,7 @@ meta_back_is_candidate(
        return META_NOT_CANDIDATE;
 }
 
+#if 0
 /*
  * meta_back_is_candidate_unique
  *
@@ -99,6 +96,7 @@ meta_back_is_candidate_unique(
 
        return 1;
 }
+#endif /* 0 */
 
 /*
  * meta_back_select_unique_candidate
index 42a99e59b7aff48929f55c2aa108a93a9c79295a..9fd06be3e0f0bb68e49dea5e4dbf8c02bcbf8168 100644 (file)
@@ -71,7 +71,6 @@ meta_back_compare( Operation *op, SlapReply *rs )
        dc.ctx = "compareDN";
 
        for ( i = 0; i < mi->mi_ntargets; i++ ) {
-               metasingleconn_t        *msc = &mc->mc_conns[ i ];
                struct berval           mdn = BER_BVNULL;
                struct berval           mapped_attr = op->orc_ava->aa_desc->ad_cname;
                struct berval           mapped_value = op->orc_ava->aa_value;
index 1379d8c3a1b10527d171b71715b111a097a6be5b..36fdc72a46fb79dfab81bc317f28f19705c9f6ae 100644 (file)
@@ -570,7 +570,6 @@ meta_back_candidates_get( Operation *op )
 {
        metainfo_t              *mi = ( metainfo_t * )op->o_bd->be_private;
        metacandidates_t        *mc;
-       SlapReply               *rs;
 
        if ( op->o_threadctx ) {
                void            *data = NULL;
index 90c395a40f5fab6241c95a5b96b0ec98f3cc6327..6294d0c636d3407f0801e048c4602c033af13cd9 100644 (file)
@@ -74,7 +74,6 @@ over_db_config(
        BackendInfo *bi_orig = be->bd_info;
        struct ConfigOCs *be_cf_ocs = be->be_cf_ocs;
        ConfigArgs ca = {0};
-       ConfigTable *ct;
        int rc = 0;
 
        if ( oi->oi_orig->bi_db_config ) {
index 7633af36de03b79ec25b79ce2b5b1ba4741d4d40..36651ae75600e84524b67b8cd08723841902ab74 100644 (file)
@@ -99,7 +99,7 @@ componentFilterMatch (
 {
        ComponentSyntaxInfo *csi_attr = (ComponentSyntaxInfo*)value;
        MatchingRuleAssertion * ma = (MatchingRuleAssertion*)assertedValue;
-       int num_attr, rc, i;
+       int rc;
 
        if ( !mr || !ma->ma_cf ) return LDAP_INAPPROPRIATE_MATCHING;
 
@@ -154,8 +154,6 @@ allComponentsMatch(
 static int
 slapd_ber2cav( struct berval* bv, ComponentAssertionValue* cav )
 {
-       int len;
-
        cav->cav_ptr = cav->cav_buf = bv->bv_val;
        cav->cav_end = bv->bv_val + bv->bv_len;
 
@@ -165,11 +163,9 @@ slapd_ber2cav( struct berval* bv, ComponentAssertionValue* cav )
 ComponentReference*
 dup_comp_ref ( Operation* op, ComponentReference* cr )
 {
-       int rc, count = 0;
        ComponentReference* dup_cr;
        ComponentId* ci_curr;
        ComponentId** ci_temp;
-       ber_int_t type;
 
        dup_cr = op->o_tmpalloc( sizeof( ComponentReference ), op->o_tmpmemctx );
 
@@ -234,7 +230,6 @@ dup_comp_filter_item (
        ComponentAssertion* in_ca,
        ComponentAssertion** out_ca )
 {
-       ComponentAssertion* ca;
        int len;
 
        if ( !in_ca->ca_comp_ref ) return SLAPD_DISCONNECT;
@@ -301,9 +296,7 @@ dup_comp_filter (
 int
 get_aliased_filter_aa ( Operation* op, AttributeAssertion* a_assert, AttributeAliasing* aa, const char** text )
 {
-       int rc;
        struct berval assert_bv;
-       ComponentAssertion* ca;
 
        Debug( LDAP_DEBUG_FILTER, "get_aliased_filter\n", 0, 0, 0 );
 
@@ -324,9 +317,7 @@ get_aliased_filter( Operation* op,
        MatchingRuleAssertion* ma, AttributeAliasing* aa,
        const char** text )
 {
-       int rc;
        struct berval assert_bv;
-       ComponentAssertion* ca;
 
        Debug( LDAP_DEBUG_FILTER, "get_aliased_filter\n", 0, 0, 0 );
 
@@ -956,7 +947,6 @@ get_item( Operation *op, ComponentAssertionValue* cav, ComponentAssertion** ca,
 {
        int rc;
        ComponentAssertion* _ca;
-       struct berval t_bv;
        struct berval value;
        MatchingRule* mr;
 
@@ -1268,7 +1258,7 @@ test_comp_filter_item(
        ComponentSyntaxInfo *csi_attr,
        ComponentAssertion *ca )
 {
-       int rc, len;
+       int rc;
        void *attr_nm, *assert_nm;
 
        if ( strcmp(ca->ca_ma_rule->smr_mrule.mr_oid,
index 5b81cfa083b1f4c086d9492d2eb65d73f90f7cd3..7f14f1fd6211713e544d1fd19db086b2a67fe85e 100644 (file)
@@ -32,7 +32,9 @@ static SLAP_CTRL_PARSE_FN parseProxyAuthz;
 static SLAP_CTRL_PARSE_FN parseManageDIT;
 #endif
 static SLAP_CTRL_PARSE_FN parseManageDSAit;
+#ifdef LDAP_CONTROL_MODIFY_INCREMENT
 static SLAP_CTRL_PARSE_FN parseModifyIncrement;
+#endif
 static SLAP_CTRL_PARSE_FN parseNoOp;
 static SLAP_CTRL_PARSE_FN parsePagedResults;
 #ifdef LDAP_DEVEL
@@ -672,7 +674,6 @@ int get_ctrls(
                        rs->sr_text = "critical extension is not recognized";
                        goto return_results;
                }
-next_ctrl:;
        }
 
 return_results:
@@ -693,6 +694,7 @@ return_results:
        return rs->sr_err;
 }
 
+#ifdef LDAP_CONTROL_MODIFY_INCREMENT
 static int parseModifyIncrement (
        Operation *op,
        SlapReply *rs,
@@ -718,6 +720,7 @@ static int parseModifyIncrement (
 
        return LDAP_SUCCESS;
 }
+#endif
 
 #ifdef LDAP_DEVEL
 static int parseManageDIT (
index 5ecf2590f799c9c4c5f52edaa29b985b5a397f1b..4e96b22539ca2a95e845f7e10f7f15c265bc1e82 100644 (file)
@@ -176,9 +176,7 @@ slap_dup_sync_cookie(
        struct sync_cookie *src
 )
 {
-       int i;
        struct sync_cookie *new;
-       struct berval tmp_bv;
 
        if ( src == NULL )
                return NULL;
index cd381f1bf3443d3c69845924aa0cbfc8a32b2e17..33a7421d34f1fc792a0b5549fce9b9713a12c431 100644 (file)
@@ -604,7 +604,7 @@ oc_unparse( BerVarray *res, ObjectClass *start, ObjectClass *end, int sys )
        ObjectClass *oc;
        int i, num;
        struct berval bv, *bva = NULL, idx;
-       char ibuf[32], *ptr;
+       char ibuf[32];
 
        if ( !start )
                start = LDAP_STAILQ_FIRST( &oc_list );
index 25407644a495490c64e336492fde6bf2b787ec55..32b4a47e74f017347426bc38081075c62e4e4e05 100644 (file)
@@ -156,7 +156,7 @@ void oidm_unparse( BerVarray *res, OidMacro *start, OidMacro *end, int sys )
 {
        OidMacro *om;
        int i, j, num;
-       struct berval bv, *bva = NULL, idx;
+       struct berval *bva = NULL, idx;
        char ibuf[32], *ptr;
 
        if ( !start )
index ae35892417e599040daaf90a46abe8846ac37e8a..4b52ad93780d0803fa0ce233132511b14dc1f7ef 100644 (file)
@@ -43,6 +43,7 @@
                         ispunct((unsigned char) (x)) || \
                         isdigit((unsigned char) (x)) || (x) == '\0')
 
+#if 0
 static char *
 first_word( char *s )
 {
@@ -98,6 +99,7 @@ word_dup( char *w )
 
        return( ret );
 }
+#endif /* 0 */
 
 #ifndef MAXPHONEMELEN
 #define MAXPHONEMELEN  4
index 64389ccd170d43bbebdc56d775e95c7c617214b2..50c326b10e551692e94eff89f9979ee52e8681ee 100644 (file)
@@ -53,7 +53,6 @@ root_dse_info(
 {
        Entry           *e;
        struct berval val, *bv;
-       struct berval nval;
        int             i, j;
        char ** supportedSASLMechanisms;
        BackendDB *be;
index 001c0ecdb0935eb941f20a96f72d5526e673cad9..bb4abc1822f4786ed7fbed0e5023fef072057f25 100644 (file)
@@ -494,6 +494,7 @@ done:
        return( rc );
 }
 
+#ifndef SLAP_AUTH_REWRITE
 static int slap_sasl_rx_off(char *rep, int *off)
 {
        const char *c;
@@ -527,6 +528,7 @@ static int slap_sasl_rx_off(char *rep, int *off)
        off[n] = -1;
        return( LDAP_SUCCESS );
 }
+#endif /* ! SLAP_AUTH_REWRITE */
 
 #ifdef SLAP_AUTH_REWRITE
 int slap_sasl_rewrite_config( 
@@ -644,7 +646,6 @@ int slap_sasl_regexp_config( const char *match, const char *replace )
 void slap_sasl_regexp_unparse( BerVarray *out )
 {
        int i;
-       struct berval bv;
        BerVarray bva = NULL;
        char ibuf[32], *ptr;
        struct berval idx;
@@ -670,6 +671,7 @@ void slap_sasl_regexp_unparse( BerVarray *out )
        *out = bva;
 }
 
+#ifndef SLAP_AUTH_REWRITE
 /* Perform replacement on regexp matches */
 static void slap_sasl_rx_exp(
        const char *rep,
@@ -721,6 +723,7 @@ static void slap_sasl_rx_exp(
 
        out->bv_val[insert] = '\0';
 }
+#endif /* ! SLAP_AUTH_REWRITE */
 
 /* Take the passed in SASL name and attempt to convert it into an
    LDAP URI to find the matching LDAP entry, using the pattern matching
@@ -1102,7 +1105,7 @@ slap_sasl_check_authz( Operation *op,
        AttributeDescription *ad,
        struct berval *authc )
 {
-       int i, rc;
+       int rc;
        BerVarray vals = NULL;
 
        Debug( LDAP_DEBUG_TRACE,
index fec476894d3d82e4c489f940de4a7dc3b629d17b..9ff3e8699063e05c81a5e089d5ccfdcd6b884db9 100644 (file)
@@ -63,8 +63,7 @@ slapadd( int argc, char **argv )
        ID      ctxcsn_id, id;
        int ret;
        struct berval bvtext;
-       int i, checkvals;
-       struct berval mc;
+       int checkvals;
        slap_tool_init( progname, SLAPADD, argc, argv );
 
        if( !be->be_entry_open ||
@@ -314,7 +313,6 @@ slapadd( int argc, char **argv )
                        }
                }
 
-done:;
                entry_free( e );
        }
 
index b6aa778c6b85fd71bd1567eeb4d47b7555d596bd..374ec60b2f45b3e14544fd35a85bf224b49a769d 100644 (file)
 
 #include "slap.h"
 
-#if 0 /* unused */
-static char    *find_matching_paren( const char *s );
-#endif /* unused */
-static Filter  *str2list( const char *str, long unsigned int ftype);
-static Filter  *str2simple( const char *str);
-static int     str2subvals( const char *val, Filter *f);
 
 Filter *
 str2filter_x( Operation *op, const char *str )
index f7efaf86fc2c93084cd90fb8627a375ea85dbde8..f2f56a5e859f6e9b491b91d062f56326839e73a2 100644 (file)
@@ -2659,7 +2659,7 @@ syncrepl_unparse( syncinfo_t *si, struct berval *bv )
 {
        struct berval bc;
        char buf[BUFSIZ*2], *ptr;
-       int i, len;
+       int i;
 
        bindconf_unparse( &si->si_bindconf, &bc );
        ptr = buf;
index ef5c8b571de8f77c663c180d8f3fcf7a45017c9e..174a30579d2ffc2e464890bcf5187ad132d3b0cf 100644 (file)
@@ -312,7 +312,6 @@ ordered_value_sort( Attribute *a, int do_renumber )
        int i, vals;
        int index = 0, noindex = 0, renumber = 0, gotnvals = 0;
        struct berval tmp;
-       char *ptr;
 
        if ( a->a_nvals && a->a_nvals != a->a_vals )
                gotnvals = 1;