]> git.sur5r.net Git - openldap/commitdiff
Remove unused variables.
authorHallvard Furuseth <hallvard@openldap.org>
Fri, 22 Jul 2005 13:18:28 +0000 (13:18 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Fri, 22 Jul 2005 13:18:28 +0000 (13:18 +0000)
servers/slapd/backover.c
servers/slapd/controls.c
servers/slapd/overlays/unique.c
servers/slapd/root_dse.c

index b3c06b04f4dd080228a7eaa090a7026acf7b82e5..8260f29a6d863e9fd1eecd9bb3115824d8decf95 100644 (file)
@@ -517,7 +517,6 @@ over_op_func(
 {
        slap_overinfo *oi;
        slap_overinst *on;
-       BI_op_bind **func;
        BackendDB *be = op->o_bd, db;
        slap_callback cb = {NULL, over_back_response, NULL, NULL};
        int rc = SLAP_CB_CONTINUE;
index 9e3ef0fd0bc9dc3a3c83f2137d21e4d3580de003..383b945e0073898b0561518b2cb717194bf6e6eb 100644 (file)
@@ -448,7 +448,6 @@ int slap_parse_ctrl(
        const char **text )
 {
        struct slap_control *sc;
-       int rc;
 
        sc = find_ctrl( control->ldctl_oid );
        if( sc != NULL ) {
index 79e7db9403785bd5c59f1218097b9ec2eb872d6d..3ea3741a996bbdcda904362a3d6a9a92173bcc20 100644 (file)
@@ -506,7 +506,7 @@ static int unique_modrdn(
        Operation nop = *op;
 
        char *key, *kp;
-       int i, rc, ks = 16;             /* a handful of extra bytes */
+       int i, ks = 16;                 /* a handful of extra bytes */
        LDAPRDN newrdn;
        struct berval bv[2];
 
index 50c326b10e551692e94eff89f9979ee52e8681ee..628ddea77cd13aca89dac421590641802f5bfbf0 100644 (file)
@@ -52,7 +52,10 @@ root_dse_info(
        const char **text )
 {
        Entry           *e;
-       struct berval val, *bv;
+       struct berval val;
+#ifdef LDAP_SLAPI
+       struct berval *bv;
+#endif
        int             i, j;
        char ** supportedSASLMechanisms;
        BackendDB *be;
@@ -63,8 +66,10 @@ root_dse_info(
                = slap_schema.si_ad_objectClass;
        AttributeDescription *ad_namingContexts
                = slap_schema.si_ad_namingContexts;
+#ifdef LDAP_SLAPI
        AttributeDescription *ad_supportedExtension
                = slap_schema.si_ad_supportedExtension;
+#endif
        AttributeDescription *ad_supportedLDAPVersion
                = slap_schema.si_ad_supportedLDAPVersion;
        AttributeDescription *ad_supportedSASLMechanisms