/* error.c - BDB errcall routine */ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * * Copyright 2000-2004 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted only as authorized by the OpenLDAP * Public License. * * A copy of this license is available in the file LICENSE in the * top-level directory of the distribution or, alternatively, at * . */ #include "portable.h" #include #include #include "slap.h" #include "back-bdb.h" void bdb_errcall( const char *pfx, char * msg ) { #ifdef HAVE_EBCDIC if ( msg[0] > 0x7f ) __etoa( msg ); #endif #ifdef NEW_LOGGING LDAP_LOG ( OPERATION, INFO, "bdb(%s): %s\n", pfx, msg, 0 ); #else Debug( LDAP_DEBUG_ANY, "bdb(%s): %s\n", pfx, msg, 0 ); #endif } #ifdef HAVE_EBCDIC #undef db_strerror /* Not re-entrant! */ char *ebcdic_dberror( int rc ) { static char msg[1024]; strcpy( msg, db_strerror( rc ) ); __etoa( msg ); return msg; } #endif