first arg of ldbm_db_errcall could be a const char * instead of char *.

This commit is contained in:
Kurt Zeilenga 1999-02-02 23:15:45 +00:00
parent 40ba9bc80b
commit 0c2ce661fb
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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 );
}