]> git.sur5r.net Git - openldap/commitdiff
Don't use 'void *' unnecessarily.
authorKurt Zeilenga <kurt@openldap.org>
Mon, 7 Jan 2002 20:28:02 +0000 (20:28 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 7 Jan 2002 20:28:02 +0000 (20:28 +0000)
servers/slapd/ad.c
servers/slapd/proto-slap.h

index 6c199e5cb59ed1552030131ff4d8c6b4726db578..d865d5301d30897521aaadae499396c1904ec5f1 100644 (file)
@@ -35,13 +35,13 @@ static int ad_keystring(
        return 0;
 }
 
-void ad_destroy( void *in )
+void ad_destroy( AttributeDescription *ad )
 {
-       AttributeDescription *ad = in, *n;
+       AttributeDescription *n;
 
-       for (;ad;ad = n) {
+       for (; ad != NULL; ad = n) {
                n = ad->ad_next;
-               ldap_memfree(ad);
+               ldap_memfree( ad );
        }
 }
 
index 35d31fc2d02b3e25bcdfb54117bbd6ead2f22c84..bd535925757583cbb4fa9e40c8c3db15c58da6a6 100644 (file)
@@ -729,7 +729,7 @@ LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
 LDAP_SLAPD_F (void) at_destroy LDAP_P(( void ));
-LDAP_SLAPD_F (void) ad_destroy LDAP_P(( void * ));
+LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));