]> git.sur5r.net Git - openldap/commitdiff
struct * are not to be const'ified
authorKurt Zeilenga <kurt@openldap.org>
Sat, 5 Jan 2002 18:54:04 +0000 (18:54 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 5 Jan 2002 18:54:04 +0000 (18:54 +0000)
include/lber.h
libraries/liblber/encode.c
libraries/liblber/memory.c

index c3bc498509d95f2cf27d86656f6e4f8df6589f5a..07f6cdc7f29670d625942fa9f18f1cdc6a10738a 100644 (file)
@@ -339,7 +339,7 @@ ber_put_ostring LDAP_P((
 LBER_F( int )
 ber_put_berval LDAP_P((
        BerElement *ber,
-       LDAP_CONST struct berval *bv,
+       struct berval *bv,
        ber_tag_t tag ));
 
 LBER_F( int )
@@ -556,11 +556,11 @@ ber_bvecadd LDAP_P((
 
 LBER_F( struct berval * )
 ber_dupbv LDAP_P((
-       struct berval *dst, LDAP_CONST struct berval *src ));
+       struct berval *dst, struct berval *src ));
 
 LBER_F( struct berval * )
 ber_bvdup LDAP_P((
-       LDAP_CONST struct berval *src ));
+       struct berval *src ));
 
 LBER_F( struct berval * )
 ber_str2bv LDAP_P((
index 2474f6af5977732ff8834a3090439746f7576060..886e5716df3f386bda19ae7dedb9bad4a6be905f 100644 (file)
@@ -305,7 +305,7 @@ ber_put_ostring(
 int
 ber_put_berval(
        BerElement *ber,
-       LDAP_CONST struct berval *bv,
+       struct berval *bv,
        ber_tag_t tag )
 {
        assert( ber != NULL );
index 3c660f6a2b81d46f950cf0ea0a90b506db688bbf..cbf3f730414274a165bbeb0158a11d7c81bc11df 100644 (file)
@@ -447,7 +447,7 @@ ber_bvecadd( struct berval ***bvec, struct berval *bv )
 
 struct berval *
 ber_dupbv(
-       struct berval *dst, LDAP_CONST struct berval *src )
+       struct berval *dst, struct berval *src )
 {
        struct berval *new;
 
@@ -490,7 +490,7 @@ ber_dupbv(
 
 struct berval *
 ber_bvdup(
-       LDAP_CONST struct berval *src )
+       struct berval *src )
 {
        return ber_dupbv( NULL, src );
 }