Disable debugging

This commit is contained in:
Kurt Zeilenga 2000-09-28 22:25:19 +00:00
parent 11ba8fcf8f
commit 160bf00975
2 changed files with 3 additions and 4 deletions

View file

@ -14,7 +14,7 @@
#define IDL_CMP(x,y) ( x < y ? -1 : ( x > y ? 1 : 0 ) )
#define IDL_DEBUG
#undef IDL_DEBUG
#ifdef IDL_DEBUG
void idl_dump( ID *ids )
{
@ -40,7 +40,7 @@ void idl_dump( ID *ids )
unsigned bdb_idl_search( ID *ids, ID id )
{
#define IDL_BINARY_SEARCH
#undef IDL_BINARY_SEARCH
#ifdef IDL_BINARY_SEARCH
/*
* binary search of id in ids

View file

@ -317,9 +317,8 @@ bdb_initialize(
bi->bi_acl_group = bdb_group;
bi->bi_acl_attribute = bdb_attribute;
bi->bi_chk_referrals = bdb_referrals;
#endif
bi->bi_chk_referrals = bdb_referrals;
bi->bi_entry_release_rw = 0;