mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
struct * are not to be const'ified
This commit is contained in:
parent
e5beebd6a3
commit
f1afebe727
@ -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((
|
||||
|
@ -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 );
|
||||
|
@ -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 );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user