openldap/servers/slapd/back-bdb/error.c

20 lines
396 B
C
Raw Normal View History

2000-09-19 09:59:08 +08:00
/* 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 )
{
2000-10-02 03:21:07 +08:00
Debug( LDAP_DEBUG_ANY, "bdb(%s): %s\n", pfx, msg, 0 );
2000-09-19 09:59:08 +08:00
}