]> git.sur5r.net Git - openldap/commitdiff
Use LDAP_CONST, not const, in public function declarations.
authorKurt Zeilenga <kurt@openldap.org>
Tue, 1 Feb 2000 01:11:26 +0000 (01:11 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 1 Feb 2000 01:11:26 +0000 (01:11 +0000)
libraries/libldap/sort.c

index c62961b7731f6cc9367d45d88f949a6d33f4e273..d35eec1b40d41640018847836964a0eb9ad46a0e 100644 (file)
@@ -40,8 +40,8 @@ static int    et_cmp LDAP_P(( const void *aa, const void *bb));
 
 int
 ldap_sort_strcasecmp(
-       const void      *a,
-       const void      *b
+       LDAP_CONST void *a,
+       LDAP_CONST void *b
 )
 {
        return( strcasecmp( *(char *const *)a, *(char *const *)b ) );
@@ -147,7 +147,7 @@ int
 ldap_sort_values(
     LDAP       *ld,
     char       **vals,
-    int                (*cmp) (const void *, const void *)
+    int                (*cmp) (LDAP_CONST void *, LDAP_CONST void *)
 )
 {
        int     nel;