mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-17 14:00:30 +08:00
first arg of ldbm_db_errcall could be a const char * instead of char *.
This commit is contained in:
parent
40ba9bc80b
commit
0c2ce661fb
@ -127,7 +127,7 @@ int index_add_values LDAP_P(( Backend *be, char *type, struct berval **vals, ID
|
||||
|
||||
void ldbm_back_startup LDAP_P(( Backend *be ));
|
||||
void ldbm_back_shutdown LDAP_P(( Backend *be ));
|
||||
void ldbm_db_errcall LDAP_P(( char *prefix, char *message ));
|
||||
void ldbm_db_errcall LDAP_P(( const char *prefix, char *message ));
|
||||
|
||||
/*
|
||||
* nextid.c
|
||||
|
@ -87,7 +87,7 @@ ldbm_back_shutdown(
|
||||
#ifdef HAVE_BERKELEY_DB2
|
||||
|
||||
void
|
||||
ldbm_db_errcall( char *prefix, char *message )
|
||||
ldbm_db_errcall( const char *prefix, char *message )
|
||||
{
|
||||
Debug( LDAP_DEBUG_ANY, "ldbm_db_errcall(): %s %s", prefix, message, 0 );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user