mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
20 lines
394 B
C
20 lines
394 B
C
/* error.c - BDB errcall routine */
|
|
/* $OpenLDAP$ */
|
|
/*
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
#include <ac/string.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-bdb.h"
|
|
|
|
void bdb_errcall( const char *pfx, char * msg )
|
|
{
|
|
Debug( LDAP_DEBUG_ANY, "bdb(%s): %s", pfx, msg, 0 );
|
|
}
|