Skip to content
Snippets Groups Projects
Commit 0c2ce661 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

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

parent 40ba9bc8
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment